CppWAMP
C++11 client library for the WAMP protocol
messagebuffer.hpp
Go to the documentation of this file.
1 /*------------------------------------------------------------------------------
2  Copyright Butterfly Energy Systems 2022.
3  Distributed under the Boost Software License, Version 1.0.
4  http://www.boost.org/LICENSE_1_0.txt
5 ------------------------------------------------------------------------------*/
6 
7 #ifndef CPPWAMP_MESSAGEBUFFER_HPP
8 #define CPPWAMP_MESSAGEBUFFER_HPP
9 
10 //------------------------------------------------------------------------------
13 //------------------------------------------------------------------------------
14 
15 #include <cstdint>
16 #include <vector>
17 
18 namespace wamp
19 {
20 
21 //------------------------------------------------------------------------------
24 //------------------------------------------------------------------------------
25 using MessageBuffer = std::vector<uint8_t>;
26 
27 
28 } // namespace wamp
29 
30 #endif // CPPWAMP_MESSAGEBUFFER_HPP
wamp
Definition: anyhandler.hpp:36
wamp::MessageBuffer
std::vector< uint8_t > MessageBuffer
Container type used for encoded WAMP messages that are sent/received over a transport.
Definition: messagebuffer.hpp:25