client-cpp  0.8.1
IKaaTcpRequest.hpp
Go to the documentation of this file.
1 
17 #ifndef IKAATCPREQUEST_HPP_
18 #define IKAATCPREQUEST_HPP_
19 
20 #include <vector>
21 #include <cstdint>
22 
23 namespace kaa {
24 
26 {
27 public:
28  virtual const std::vector<std::uint8_t>& getRawMessage() const = 0;
29  virtual ~IKaaTcpRequest() { }
30 };
31 
32 }
33 
34 
35 
36 #endif /* IKAATCPREQUEST_HPP_ */
virtual const std::vector< std::uint8_t > & getRawMessage() const =0