Try to get the node with the specified ID
| 364 | |
| 365 | // Try to get the node with the specified ID |
| 366 | FlowNode* GetNode( UUID const& nodeID ) { return reinterpret_cast<FlowNode*>( FindNode( nodeID ) ); } |
| 367 | |
| 368 | // Try to get the node with the specified ID |
| 369 | inline FlowNode const* GetNode( UUID const& nodeID ) const { return reinterpret_cast<FlowNode*>( FindNode( nodeID ) ); } |
no test coverage detected