Go to the documentation of this file.00001
00005
00006
00007
00008
00009 #include <cassert>
00010
00011 #include <stdair/stdair_inventory_types.hpp>
00012
00013 #include <test/stdair/MPInventory.hpp>
00014
00015 namespace myprovider {
00016
00017
00018 Inventory::Inventory (const Key_T& iKey) : stdair::Inventory (iKey) {
00019 }
00020
00021
00022 Inventory::~Inventory () {
00023 }
00024
00025
00026 std::string Inventory::toString() const {
00027 std::ostringstream oStr;
00028 oStr << _key.toString();
00029 return oStr.str();
00030 }
00031
00032
00033 const std::string Inventory::describeKey() const {
00034 return _key.toString();
00035 }
00036
00037 }