TuttleOFX  1
TuttleOFX/libraries/tuttle/src/tuttle/host/graph/ProcessVertexData.cpp
Go to the documentation of this file.
00001 #include "ProcessVertexData.hpp"
00002 
00003 #include <boost/foreach.hpp>
00004 
00005 #include <iomanip>
00006 #include <sstream>
00007 
00008 namespace tuttle {
00009 namespace host {
00010 namespace graph {
00011 
00012 std::ostream& operator<<( std::ostream& os, const ProcessVertexData& vData )
00013 {
00014         os << "render start frame:" << vData._renderTimeRange.min << std::endl;
00015         os << "render end frame:" << vData._renderTimeRange.max << std::endl;
00016         os << "step:" << vData._step << std::endl;
00017         os << "interactive:" << vData._interactive << std::endl;
00018 
00019         os << "out degree:" << vData._outDegree << std::endl;
00020         os << "in degree:" << vData._inDegree << std::endl;
00021 
00022         return os;
00023 }
00024 
00025 }
00026 }
00027 }
00028