TuttleOFX  1
TuttleOFX/libraries/tuttle/src/tuttle/host/NodeHashContainer.cpp
Go to the documentation of this file.
00001 #include "NodeHashContainer.hpp"
00002 
00003 #include <boost/foreach.hpp>
00004 
00005 namespace tuttle {
00006 namespace host {
00007 
00008 std::ostream& operator<<( std::ostream& os, const NodeHashContainer& c )
00009 {
00010         os << "abcd NodeHashContainer {" << std::endl;
00011         BOOST_FOREACH( const NodeHashContainer::Map::value_type& v, c._hashes )
00012         {
00013                 os << v.first << ": " << v.second << std::endl;
00014         }
00015         os << "}" << std::endl;
00016         return os;
00017 }
00018 
00019 }
00020 }