AirTSP Logo  1.01.11
C++ Simulated Airline Travel Solution Provider (TSP) Library
Loading...
Searching...
No Matches
BomDisplay.hpp
Go to the documentation of this file.
1#ifndef __AIRTSP_BOM_BOMDISPLAY_HPP
2#define __AIRTSP_BOM_BOMDISPLAY_HPP
3
4// //////////////////////////////////////////////////////////////////////
5// Import section
6// //////////////////////////////////////////////////////////////////////
7// STL
8#include <iosfwd>
9#include <string>
10// Airtsp
11
13namespace stdair {
14 class BomRoot;
15}
16
17namespace AIRTSP {
18
20 class ReachableUniverse;
21
26 class BomDisplay {
27 public:
28 // //////////////// Display support methods /////////////////
37 static std::string csvDisplay (const stdair::BomRoot&);
38
47 static void csvDisplay (std::ostream&, const ReachableUniverse&);
48 };
49
50}
51#endif // __AIRTSP_BOM_BOMDISPLAY_HPP
Utility class to display AirTSP objects with a pretty format.
static std::string csvDisplay(const stdair::BomRoot &)
Class representing the root of the schedule-related BOM tree.
Forward declarations.