StdAir Logo  1.00.18
C++ Standard Airline IT Object Library
Loading...
Searching...
No Matches
OnDDateTypes.hpp
Go to the documentation of this file.
1// //////////////////////////////////////////////////////////////////////
2#ifndef __STDAIR_BOM_ONDDATETYPES_HPP
3#define __STDAIR_BOM_ONDDATETYPES_HPP
4
5// //////////////////////////////////////////////////////////////////////
6// Import section
7// //////////////////////////////////////////////////////////////////////
8// STL
9#include <map>
10#include <list>
11// Stdair
15
16namespace stdair {
17
18 // Forward declarations.
19 class OnDDate;
20
22 typedef std::list<OnDDate*> OnDDateList_T;
23
25 typedef std::map<const MapKey_T, OnDDate*> OnDDateMap_T;
26
32 typedef std::pair<std::string, YieldDemandPair_T> StringDemandStructPair_T;
33 typedef std::map<std::string, YieldDemandPair_T> StringDemandStructMap_T;
34
41 typedef std::map<std::string, CabinClassPairList_T> StringCabinClassPairListMap_T;
42 typedef std::pair<std::string, CabinClassPairList_T> StringCabinClassPair_T;
43
48 typedef std::map<CabinCode_T, WTPDemandPair_T> CabinForecastMap_T;
49 typedef std::pair<CabinCode_T, WTPDemandPair_T> CabinForecastPair_T;
50
51}
52#endif // __STDAIR_BOM_ONDDATETYPES_HPP
Handle on the StdAir library context.
std::pair< std::string, CabinClassPairList_T > StringCabinClassPair_T
std::map< std::string, CabinClassPairList_T > StringCabinClassPairListMap_T
std::pair< CabinCode_T, WTPDemandPair_T > CabinForecastPair_T
std::pair< std::string, YieldDemandPair_T > StringDemandStructPair_T
std::map< CabinCode_T, WTPDemandPair_T > CabinForecastMap_T
std::list< OnDDate * > OnDDateList_T
std::map< std::string, YieldDemandPair_T > StringDemandStructMap_T
std::map< const MapKey_T, OnDDate * > OnDDateMap_T
Class representing the actual attributes for an airline flight-date.
Definition OnDDate.hpp:33