/
#include <cassert>
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();
}
}