$treeview $search $mathjax
00001 00005 // ////////////////////////////////////////////////////////////////////// 00006 // Import section 00007 // ////////////////////////////////////////////////////////////////////// 00008 // STL 00009 #include <cassert> 00010 // StdAir 00011 #include <stdair/stdair_inventory_types.hpp> 00012 // StdAir Test 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 }