AirInv Logo  1.00.1
C++ Simulated Airline Inventory Management System library
AirportList.hpp
Go to the documentation of this file.
1 #ifndef __AIRINV_BOM_AIRPORTLIST_HPP
2 #define __AIRINV_BOM_AIRPORTLIST_HPP
3 
4 // //////////////////////////////////////////////////////////////////////
5 // Import section
6 // //////////////////////////////////////////////////////////////////////
7 // STL
8 #include <set>
9 #include <vector>
10 // STDAIR
11 #include <stdair/stdair_basic_types.hpp>
12 
13 namespace AIRINV {
14 
16  typedef std::set<stdair::AirportCode_T> AirportList_T;
17  typedef std::vector<stdair::AirportCode_T> AirportOrderedList_T;
18 
19 }
20 #endif // __AIRINV_BOM_AIRPORTLIST_HPP
std::vector< stdair::AirportCode_T > AirportOrderedList_T
Definition: AirportList.hpp:17
std::set< stdair::AirportCode_T > AirportList_T
Definition: AirportList.hpp:16