AirSched Logo  0.1.4
C++ Simulated Airline Schedule Manager Library
Simulator.hpp
Go to the documentation of this file.
00001 #ifndef __AIRSCHED_COM_CMD_SIMULATOR_HPP
00002 #define __AIRSCHED_COM_CMD_SIMULATOR_HPP
00003 
00004 // //////////////////////////////////////////////////////////////////////
00005 // Import section
00006 // //////////////////////////////////////////////////////////////////////
00007 // StdAir
00008 #include <stdair/command/CmdAbstract.hpp>
00009 
00010 // Forward declarations
00011 namespace stdair {
00012   class BomRoot;
00013 }
00014 
00015 namespace AIRSCHED {
00016   
00018   class Simulator : public stdair::CmdAbstract {
00019   public:
00020 
00021     // ////////// Business Methods /////////
00024     static void simulate (stdair::BomRoot&);
00025   };
00026 
00027 }
00028 #endif // __AIRSCHED_COM_CMD_SIMULATOR_HPP