$treeview $search $mathjax
00001 // ////////////////////////////////////////////////////////////////////// 00002 // Import section 00003 // ////////////////////////////////////////////////////////////////////// 00004 // STL 00005 #include <ostream> 00006 #include <sstream> 00007 // StdAir 00008 #include <stdair/bom/BomHolderKey.hpp> 00009 00010 namespace stdair { 00011 00012 // //////////////////////////////////////////////////////////////////// 00013 BomHolderKey::BomHolderKey () { 00014 } 00015 00016 // //////////////////////////////////////////////////////////////////// 00017 BomHolderKey::~BomHolderKey () { 00018 } 00019 00020 // //////////////////////////////////////////////////////////////////// 00021 void BomHolderKey::toStream (std::ostream& ioOut) const { 00022 ioOut << "BomHolderKey: " << toString() << std::endl; 00023 } 00024 00025 // //////////////////////////////////////////////////////////////////// 00026 void BomHolderKey::fromStream (std::istream& ioIn) { 00027 } 00028 00029 // //////////////////////////////////////////////////////////////////// 00030 const std::string BomHolderKey::toString() const { 00031 std::ostringstream oStr; 00032 oStr << " -- HOLDER -- "; 00033 return oStr.str(); 00034 } 00035 00036 }