AirSched Logo  0.1.4
C++ Simulated Airline Schedule Manager Library
AirportList.hpp
Go to the documentation of this file.
00001 #ifndef __AIRSCHED_BOM_AIRPORTLIST_HPP
00002 #define __AIRSCHED_BOM_AIRPORTLIST_HPP
00003 
00004 // //////////////////////////////////////////////////////////////////////
00005 // Import section
00006 // //////////////////////////////////////////////////////////////////////
00007 // STL
00008 #include <set>
00009 #include <vector>
00010 // StdAir
00011 #include <stdair/stdair_basic_types.hpp>
00012 
00013 namespace AIRSCHED {
00014 
00016   typedef std::set<stdair::AirportCode_T> AirportList_T;
00017   typedef std::vector<stdair::AirportCode_T> AirportOrderedList_T;
00018 
00019 }
00020 #endif // __AIRSCHED_BOM_AIRPORTLIST_HPP