StdAir Logo  1.00.3
C++ Standard Airline IT Object Library
FlightDateTypes.hpp
Go to the documentation of this file.
1 // //////////////////////////////////////////////////////////////////////
2 #ifndef __STDAIR_BOM_FLIGHTDATETYPES_HPP
3 #define __STDAIR_BOM_FLIGHTDATETYPES_HPP
4 
5 // //////////////////////////////////////////////////////////////////////
6 // Import section
7 // //////////////////////////////////////////////////////////////////////
8 // STL
9 #include <map>
10 #include <list>
11 // StdAir
12 #include <stdair/bom/key_types.hpp>
13 
14 namespace stdair {
15 
16  // Forward declarations
17  class FlightDate;
18 
19  // //////////////////////// Type definitions /////////////////////////
21  typedef std::list<FlightDate*> FlightDateList_T;
22 
24  typedef std::map<const MapKey_T, FlightDate*> FlightDateMap_T;
25 
26 }
27 #endif // __STDAIR_BOM_FLIGHTDATETYPES_HPP
28 
std::map< const MapKey_T, FlightDate * > FlightDateMap_T
Handle on the StdAir library context.
std::list< FlightDate * > FlightDateList_T
Class representing the actual attributes for an airline flight-date.
Definition: FlightDate.hpp:35