AirInv Logo  1.00.1
C++ Simulated Airline Inventory Management System library
FRAT5Struct.hpp
Go to the documentation of this file.
1 #ifndef __AIRINV_BOM_FRAT5STRUCT_HPP
2 #define __AIRINV_BOM_FRAT5STRUCT_HPP
3 
4 // //////////////////////////////////////////////////////////////////////
5 // Import section
6 // //////////////////////////////////////////////////////////////////////
7 // STL
8 #include <string>
9 // StdAir
10 #include <stdair/stdair_rm_types.hpp>
11 
12 namespace AIRINV {
13 
15  struct FRAT5Struct : public stdair::StructAbstract {
16 
17  public:
18  // ////////////////// Display Support Methods ////////////////
20  const std::string describe() const;
21 
22 
23  public:
24  // /////////////// Constructors and destructors ///////////////
26  FRAT5Struct();
28  ~FRAT5Struct();
29  private:
31  FRAT5Struct (const FRAT5Struct&);
32 
33 
34  public:
35  // ////////////// Attributes ///////////////////
37  std::string _key;
38 
41 
42  public:
43  // ///////////////// Staging ///////////////////
45  stdair::DTD_T _dtd;
46  };
47 
48 }
49 #endif // __AIRINV_BOM_FRAT5STRUCT_HPP
stdair::FRAT5Curve_T _curve
Definition: FRAT5Struct.hpp:40
std::map< const stdair::DTD_T, double > FRAT5Curve_T
const std::string describe() const
Definition: FRAT5Struct.cpp:23
stdair::DTD_T _dtd
Definition: FRAT5Struct.hpp:45