StdAir Logo  1.00.0
C++ Standard Airline IT Object Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MPBomRoot.hpp
Go to the documentation of this file.
1 #ifndef __MYPROVIDER_BOMROOT_HPP
2 #define __MYPROVIDER_BOMROOT_HPP
3 
8 // //////////////////////////////////////////////////////////////////////
9 // Import section
10 // //////////////////////////////////////////////////////////////////////
11 // STL
12 #include <string>
13 // StdAir
14 #include <stdair/bom/BomRoot.hpp>
15 
16 namespace myprovider {
17 
20  class BomRoot : public stdair::BomRoot {
21  public:
22  // /////////// Display support methods /////////
24  std::string toString() const { return describeKey(); }
25 
28  const std::string describeKey() const { return std::string (""); }
29 
30  public:
34  BomRoot (const Key_T&);
36  ~BomRoot();
38  BomRoot ();
39  BomRoot (const BomRoot&);
40  };
41 
42 }
46 #endif // __MYPROVIDER_BOMROOT_HPP