/
#include <list>
namespace myprovider {
public:
std::string toString() const;
const std::string describeKey() const;
public:
Inventory (const Key_T&);
~Inventory();
Inventory ();
Inventory (const Inventory&);
};
typedef std::list<Inventory*> InventoryList_T;
}
Class representing the actual attributes for an airline inventory.