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