AirSched Logo  0.1.4
C++ Simulated Airline Schedule Manager Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ScheduleParser.hpp
Go to the documentation of this file.
1 #ifndef __AIRSCHED_CMD_SCHEDULEPARSER_HPP
2 #define __AIRSCHED_CMD_SCHEDULEPARSER_HPP
3 
4 // //////////////////////////////////////////////////////////////////////
5 // Import section
6 // //////////////////////////////////////////////////////////////////////
7 // STL
8 #include <string>
9 // StdAir
10 #include <stdair/stdair_basic_types.hpp>
11 #include <stdair/command/CmdAbstract.hpp>
12 
13 // Forward declarations.
14 namespace stdair {
15  class BomRoot;
16 }
17 
18 namespace AIRSCHED {
19 
21  class ScheduleParser : public stdair::CmdAbstract {
22  public:
28  static void generateInventories (const stdair::Filename_T&,
29  stdair::BomRoot&);
30  };
31 }
32 #endif // __AIRSCHED_CMD_SCHEDULEPARSER_HPP