AirInv Logo  1.00.0
C++ Simulated Airline Inventory Management System library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Request.hpp
Go to the documentation of this file.
1 #ifndef __AIRINV_SVR_REQUEST_HPP
2 #define __AIRINV_SVR_REQUEST_HPP
3 
4 // //////////////////////////////////////////////////////////////////////
5 // Import section
6 // //////////////////////////////////////////////////////////////////////
7 // STL
8 #include <string>
9 #include <vector>
10 // StdAir
11 #include <stdair/stdair_basic_types.hpp>
12 #include <stdair/stdair_date_time_types.hpp>
13 // AirInv
14 
15 namespace AIRINV {
16 
18  struct Request {
19  public:
24  bool parseFlightDate();
25 
26  public:
27  // /////////// Attributes //////////////
29  std::string _flightDetails;
31  stdair::AirlineCode_T _airlineCode;
33  stdair::FlightNumber_T _flightNumber;
35  stdair::Date_T _departureDate;
36  };
37 
38 }
39 #endif // __AIRINV_SVR_REQUEST_HPP