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

test/stdair/MPInventory.hpp

Go to the documentation of this file.
00001 #ifndef __MYPROVIDER_INVENTORY_HPP
00002 #define __MYPROVIDER_INVENTORY_HPP
00003 
00008 // //////////////////////////////////////////////////////////////////////
00009 // Import section
00010 // //////////////////////////////////////////////////////////////////////
00011 // STL
00012 #include <list>
00013 // StdAir
00014 #include <stdair/bom/Inventory.hpp>
00015 
00016 namespace myprovider {
00017   
00018   class Inventory : public stdair::Inventory {
00019   public:
00020     // /////////// Display support methods /////////
00022     std::string toString() const;
00023     
00026     const std::string describeKey() const;
00027     
00028   public:
00032     Inventory (const Key_T&);
00034     ~Inventory();
00036     Inventory ();
00037     Inventory (const Inventory&);
00038   };
00039   
00040   // ////////// Type definitions /////////
00042   typedef std::list<Inventory*> InventoryList_T;
00043   
00044 }
00048 #endif // __MYPROVIDER_INVENTORY_HPP