StdAir Logo  0.45.1
C++ Standard Airline IT Object Library
Specific Implementation of a BOM Root
 */

// //////////////////////////////////////////////////////////////////////
// Import section
// //////////////////////////////////////////////////////////////////////
// STL
#include <string>
// StdAir 
#include <stdair/bom/BomRoot.hpp>

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&);
  };
  
}  
/*!
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines