AirInv Logo  1.00.5
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
AIRINV::FRAT5Struct
Definition: FRAT5Struct.hpp:15
AIRINV::FRAT5Struct::_key
std::string _key
Definition: FRAT5Struct.hpp:37
AIRINV::FRAT5Struct::describe
const std::string describe() const
Definition: FRAT5Struct.cpp:23
AIRINV::FRAT5Struct::FRAT5Struct
FRAT5Struct()
Definition: FRAT5Struct.cpp:15
AIRINV::FRAT5Struct::_curve
stdair::FRAT5Curve_T _curve
Definition: FRAT5Struct.hpp:40
AIRINV::FRAT5Struct::~FRAT5Struct
~FRAT5Struct()
Definition: FRAT5Struct.cpp:19
AIRINV::FRAT5Curve_T
std::map< const stdair::DTD_T, double > FRAT5Curve_T
Definition: AIRINV_Types.hpp:227
AIRINV
Definition: AIRINV_Master_Service.hpp:38
AIRINV::FRAT5Struct::_dtd
stdair::DTD_T _dtd
Definition: FRAT5Struct.hpp:45