AirInv Logo  1.00.0
C++ Simulated Airline Inventory Management System library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 }