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.cpp
Go to the documentation of this file.
1 // //////////////////////////////////////////////////////////////////////
2 // Import section
3 // //////////////////////////////////////////////////////////////////////
4 // STL
5 #include <cassert>
6 // AirInv
8 
9 namespace AIRINV {
10 
11  // //////////////////////////////////////////////////////////////////////
13  bool hasBeenSuccessfull = false;
14 
15  //
16  _airlineCode = "BA";
17  _flightNumber = 341;
18  _departureDate = stdair::Date_T (2010, 04, 20);
19 
20  //
21  hasBeenSuccessfull = true;
22 
23  return hasBeenSuccessfull;
24  }
25 
26 }