StdAir Logo  0.45.1
C++ Standard Airline IT Object Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GuillotineBlockTypes.hpp
Go to the documentation of this file.
1 // //////////////////////////////////////////////////////////////////////
2 #ifndef __STDAIR_BOM_GUILLOTINEBLOCKTYPES_HPP
3 #define __STDAIR_BOM_GUILLOTINEBLOCKTYPES_HPP
4 
5 // //////////////////////////////////////////////////////////////////////
6 // Import section
7 // //////////////////////////////////////////////////////////////////////
8 // STL
9 #include <map>
10 #include <list>
11 // BOOST
12 #include <boost/multi_array.hpp>
13 // StdAir
14 #include <stdair/bom/key_types.hpp>
15 
16 namespace stdair {
17 
18  // Forward declarations
19  class GuillotineBlock;
20  class SegmentCabin;
21 
22  // //////////////////////// Type definitions /////////////////////////
24  typedef std::list<GuillotineBlock*> GuillotineBlockList_T;
25 
27  typedef std::map<const MapKey_T, GuillotineBlock*> GuillotineBlockMap_T;
28 
30  typedef std::map<const SegmentCabin*, BlockNumber_T> SegmentCabinIndexMap_T;
31 
33  typedef std::map<const MapKey_T, BlockIndex_T> ValueTypeIndexMap_T;
34 
35 }
36 #endif // __STDAIR_BOM_GUILLOTINEBLOCKTYPES_HPP
37