AirInv Logo  1.00.1
C++ Simulated Airline Inventory Management System library
BasConst.cpp
Go to the documentation of this file.
1 // //////////////////////////////////////////////////////////////////////
2 // Import section
3 // //////////////////////////////////////////////////////////////////////
7 
8 namespace AIRINV {
9 
11  const std::string DEFAULT_AIRLINE_CODE = "BA";
12 
17  FRAT5Curve_T oCurve;
18  oCurve[365] = 1.1; oCurve[63] = 1.2;
19  oCurve[49] = 1.3; oCurve[35] = 1.4;
20  oCurve[23] = 1.7; oCurve[16] = 2.0;
21  oCurve[10] = 2.3; oCurve[5] = 2.44;
22  oCurve[1] = 2.5; oCurve[0] = 2.5;
23 
24  return oCurve;
25  };
26 
27 }
const FRAT5Curve_T DEFAULT_PICKUP_FRAT5_CURVE
Definition: BasConst.cpp:14
static FRAT5Curve_T createPickupFRAT5Curve()
Definition: BasConst.cpp:16
std::map< const stdair::DTD_T, double > FRAT5Curve_T
const std::string DEFAULT_AIRLINE_CODE
Definition: BasConst.cpp:11