AirSched Logo  0.1.4
C++ Simulated Airline Schedule Manager Library
ScheduleParser.hpp
Go to the documentation of this file.
00001 #ifndef __AIRSCHED_CMD_SCHEDULEPARSER_HPP
00002 #define __AIRSCHED_CMD_SCHEDULEPARSER_HPP
00003 
00004 // //////////////////////////////////////////////////////////////////////
00005 // Import section
00006 // //////////////////////////////////////////////////////////////////////
00007 // STL
00008 #include <string>
00009 // StdAir
00010 #include <stdair/stdair_basic_types.hpp>
00011 #include <stdair/command/CmdAbstract.hpp>
00012 
00013 // Forward declarations.
00014 namespace stdair {
00015   class BomRoot;
00016 }
00017 
00018 namespace AIRSCHED {
00019   
00021   class ScheduleParser : public stdair::CmdAbstract {
00022   public:
00028     static void generateInventories (const stdair::Filename_T&,
00029                                      stdair::BomRoot&);
00030   };
00031 }
00032 #endif // __AIRSCHED_CMD_SCHEDULEPARSER_HPP