AirInv Logo  1.00.1
C++ Simulated Airline Inventory Management System library
Reply.hpp
Go to the documentation of this file.
1 #ifndef __AIRINV_SVR_REPLY_HPP
2 #define __AIRINV_SVR_REPLY_HPP
3 
4 // //////////////////////////////////////////////////////////////////////
5 // Import section
6 // //////////////////////////////////////////////////////////////////////
7 // STL
8 #include <string>
9 #include <vector>
10 // Boost
11 #include <boost/asio.hpp>
12 // AirInv
14 
15 namespace AIRINV {
16 
18  struct Reply {
21 
23  std::string content;
24 
29  std::vector<boost::asio::const_buffer> to_buffers();
30  };
31 
32 }
33 #endif // __AIRINV_SVR_REPLY_HPP
FlightRequestStatus::EN_FlightRequestStatus _status
Definition: Reply.hpp:20
std::vector< boost::asio::const_buffer > to_buffers()
Definition: Reply.cpp:15
std::string content
Definition: Reply.hpp:23