client-cpp  0.8.1
ILoggingTransport.hpp
Go to the documentation of this file.
1 
17 #ifndef ILOGGINGTRANSPORT_HPP_
18 #define ILOGGINGTRANSPORT_HPP_
19 
20 #include "kaa/gen/EndpointGen.hpp"
21 #include <memory>
22 
23 namespace kaa {
24 
29 public:
30 
37  virtual std::shared_ptr<LogSyncRequest> createLogSyncRequest() = 0;
38 
46  virtual void onLogSyncResponse(const LogSyncResponse& response) = 0;
47 
48  virtual ~ILoggingTransport() {}
49 };
50 
51 } // namespace kaa
52 
53 
54 #endif /* ILOGGINGTRANSPORT_HPP_ */
virtual std::shared_ptr< LogSyncRequest > createLogSyncRequest()=0
virtual void onLogSyncResponse(const LogSyncResponse &response)=0