client-cpp  0.8.1
IConnectivityChecker.hpp
Go to the documentation of this file.
1 
17 #ifndef ICONNECTIVITYCHECKER_HPP_
18 #define ICONNECTIVITYCHECKER_HPP_
19 
20 #include <memory>
21 
22 namespace kaa {
23 
28 public:
34  virtual bool checkConnectivity() = 0;
35 
36  virtual ~IConnectivityChecker() = default;
37 };
38 
39 typedef std::shared_ptr<IConnectivityChecker> ConnectivityCheckerPtr;
40 
41 } /* namespace kaa */
42 
43 #endif /* ICONNECTIVITYCHECKER_HPP_ */
std::shared_ptr< IConnectivityChecker > ConnectivityCheckerPtr
virtual bool checkConnectivity()=0
virtual ~IConnectivityChecker()=default