AirSched Logo  0.1.4
C++ Simulated Airline Schedule Manager Library
BomDisplay.hpp
Go to the documentation of this file.
00001 #ifndef __AIRSCHED_BOM_BOMDISPLAY_HPP
00002 #define __AIRSCHED_BOM_BOMDISPLAY_HPP
00003 
00004 // //////////////////////////////////////////////////////////////////////
00005 // Import section
00006 // //////////////////////////////////////////////////////////////////////
00007 // STL
00008 #include <iosfwd>
00009 #include <string>
00010 // AirSched
00011 
00013 namespace stdair {
00014   class BomRoot;
00015 }
00016 
00017 namespace AIRSCHED {
00018 
00020   class ReachableUniverse;
00021 
00026   class BomDisplay {
00027   public:
00028     // //////////////// Display support methods /////////////////
00037     static std::string csvDisplay (const stdair::BomRoot&);
00038 
00047     static void csvDisplay (std::ostream&, const ReachableUniverse&);
00048   };
00049   
00050 }
00051 #endif // __AIRSCHED_BOM_BOMDISPLAY_HPP