| 35 | } |
| 36 | |
| 37 | void GraphNode::attachNode( GraphNode & child ) |
| 38 | { |
| 39 | if ( prev.end() == std::find( prev.begin(), prev.end(), &child ) ) |
| 40 | prev.push_back( &child ); |
| 41 | } |
| 42 | |
| 43 | //********************************************************************************************* |
| 44 |
no test coverage detected