StdAir Logo  1.00.16
C++ Standard Airline IT Object Library
Loading...
Searching...
No Matches
MPBomRoot.hpp
Go to the documentation of this file.
1#ifndef __MYPROVIDER_BOMROOT_HPP
2#define __MYPROVIDER_BOMROOT_HPP
8// //////////////////////////////////////////////////////////////////////
9// Import section
10// //////////////////////////////////////////////////////////////////////
11// STL
12#include <string>
13// StdAir
15
16namespace 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
Class representing the actual attributes for the Bom root.
Definition BomRoot.hpp:32