$treeview $search $mathjax
StdAir Logo  1.00.1
$projectbrief
$projectbrief
$searchbox

Specific Implementation of an Airline Inventory

 */

// //////////////////////////////////////////////////////////////////////
// Import section
// //////////////////////////////////////////////////////////////////////
// STL
#include <list>
// StdAir
#include <stdair/bom/Inventory.hpp>

namespace myprovider {
  
  class Inventory : public stdair::Inventory {
  public:
    // /////////// Display support methods /////////
    std::string toString() const;
    
    const std::string describeKey() const;
    
  public:
    Inventory (const Key_T&);
    ~Inventory();
    Inventory ();
    Inventory (const Inventory&);
  };
  
  // ////////// Type definitions /////////
  typedef std::list<Inventory*> InventoryList_T;
  
}
/*!