TuttleOFX
1
|
00001 #ifndef _SAM_DO_NODE_GLOBAL_HPP_ 00002 #define _SAM_DO_NODE_GLOBAL_HPP_ 00003 00004 #include <tuttle/host/Graph.hpp> 00005 00006 #include <vector> 00007 #include <string> 00008 00009 namespace ttl = tuttle::host; 00010 00011 namespace sam { 00012 namespace samdo { 00013 00014 /* 00015 struct NodeCommand 00016 { 00017 NodeCommand( const std::vector<std::string>& commandLine ) 00018 : _name( commandLine[0] ) 00019 { 00020 BOOST_ASSERT( commandLine.size() ); 00021 } 00022 00023 std::string _name; 00024 std::vector< std::pair<std::string, std::string> > _params; 00025 std::vector< std::pair<std::string, std::string> > _flags; 00026 }; 00027 */ 00028 00029 } 00030 } 00031 00032 #endif 00033 00034