StdAir Logo  1.00.3
C++ Standard Airline IT Object Library
Specific Implementation of a BOM Root
/
// //////////////////////////////////////////////////////////////////////
// Import section
// //////////////////////////////////////////////////////////////////////
// STL
#include <string>
// StdAir
namespace myprovider {
class BomRoot : public stdair::BomRoot {
public:
// /////////// Display support methods /////////
std::string toString() const { return describeKey(); }
const std::string describeKey() const { return std::string (""); }
public:
BomRoot (const Key_T&);
~BomRoot();
BomRoot ();
BomRoot (const BomRoot&);
};
}