TuttleOFX  1
TuttleOFX/libraries/tuttle/src/tuttle/host/graph/UVertex.cpp
Go to the documentation of this file.
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 }