StdAir Logo  1.00.0
C++ Standard Airline IT Object Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Specific Implementation of an Airline Inventory
*/
// //////////////////////////////////////////////////////////////////////
// Import section
// //////////////////////////////////////////////////////////////////////
// STL
#include <cassert>
// StdAir
// StdAir Test
namespace myprovider {
// ////////////////////////////////////////////////////////////////////
Inventory::Inventory (const Key_T& iKey) : stdair::Inventory (iKey) {
}
// ////////////////////////////////////////////////////////////////////
Inventory::~Inventory () {
}
// ////////////////////////////////////////////////////////////////////
std::string Inventory::toString() const {
std::ostringstream oStr;
oStr << _key.toString();
return oStr.str();
}
// ////////////////////////////////////////////////////////////////////
const std::string Inventory::describeKey() const {
return _key.toString();
}
}
/*!