AirInv Logo  1.00.8
C++ Simulated Airline Inventory Management System Library
Loading...
Searching...
No Matches
Request.cpp
Go to the documentation of this file.
1// //////////////////////////////////////////////////////////////////////
2// Import section
3// //////////////////////////////////////////////////////////////////////
4// STL
5#include <cassert>
6// AirInv
8
9namespace 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}
bool parseFlightDate()
Definition Request.cpp:12
stdair::AirlineCode_T _airlineCode
Definition Request.hpp:31
stdair::FlightNumber_T _flightNumber
Definition Request.hpp:33
stdair::Date_T _departureDate
Definition Request.hpp:35