client-cpp  0.8.1
IKaaDataDemultiplexer.hpp
Go to the documentation of this file.
1 
17 #ifndef IKAADATADEMULTIPLEXER_HPP_
18 #define IKAADATADEMULTIPLEXER_HPP_
19 
20 #include <cstdint>
21 #include <vector>
22 
23 namespace kaa {
24 
26  SUCCESS = 0,
27  FAILURE,
28  REDIRECT
29 };
30 
39 public:
40 
47  virtual DemultiplexerReturnCode processResponse(const std::vector<std::uint8_t> &response) = 0;
48 
50 };
51 
52 } // namespace kaa
53 
54 
55 #endif /* IKAADATADEMULTIPLEXER_HPP_ */
virtual DemultiplexerReturnCode processResponse(const std::vector< std::uint8_t > &response)=0