AirSched Logo  0.1.4
C++ Simulated Airline Schedule Manager Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FareFamilyStruct.hpp
Go to the documentation of this file.
1 #ifndef __AIRSCHED_BOM_FAREFAMILYSTRUCT_HPP
2 #define __AIRSCHED_BOM_FAREFAMILYSTRUCT_HPP
3 
4 // //////////////////////////////////////////////////////////////////////
5 // Import section
6 // //////////////////////////////////////////////////////////////////////
7 // STL
8 #include <string>
9 #include <vector>
10 // StdAir
11 #include <stdair/stdair_basic_types.hpp>
12 #include <stdair/basic/StructAbstract.hpp>
13 
14 namespace AIRSCHED {
15 
17  struct FareFamilyStruct : public stdair::StructAbstract {
18  // Attributes
19  stdair::FamilyCode_T _familyCode;
20  stdair::ClassList_String_T _classes;
21 
23  FareFamilyStruct (const stdair::FamilyCode_T&,
24  const stdair::ClassList_String_T&);
25 
27  const std::string describe() const;
28  };
29 
31  typedef std::vector<FareFamilyStruct> FareFamilyStructList_T;
32 
33 }
34 #endif // __AIRSCHED_BOM_FAREFAMILYSTRUCT_HPP