TuttleOFX
1
|
00001 #include "UVertex.hpp" 00002 00003 namespace tuttle { 00004 namespace host { 00005 namespace graph { 00006 00007 00008 UVertex::UVertex( const std::string& name, INode& processNode ) 00009 : IVertex( name, processNode ) 00010 { 00011 } 00012 00013 std::ostream& operator<<( std::ostream& os, const UVertex& v ) 00014 { 00015 return operator<<( os, static_cast<const IVertex&>(v) ); 00016 } 00017 00018 } 00019 } 00020 }