| 217 | |
| 218 | |
| 219 | Vertex * |
| 220 | Graph::getVertexPtr(int vertexTag) |
| 221 | { |
| 222 | TaggedObject *res = myVertices->getComponentPtr(vertexTag); |
| 223 | if (res == 0) return 0; |
| 224 | Vertex *result = (Vertex *)res; |
| 225 | return result; |
| 226 | } |
| 227 | |
| 228 | |
| 229 | VertexIter & |
no test coverage detected