src/hugo/smart_graph.h
changeset 579 859f8c7e2a40
parent 542 69bde1d90c04
child 590 5c1465127b79
     1.1 --- a/src/hugo/smart_graph.h	Fri May 07 13:27:16 2004 +0000
     1.2 +++ b/src/hugo/smart_graph.h	Fri May 07 15:58:45 2004 +0000
     1.3 @@ -220,6 +220,8 @@
     1.4        NodeIt() : Node() { }
     1.5        NodeIt(Invalid i) : Node(i) { }
     1.6        NodeIt(const SmartGraph& G) : Node(G.nodes.size()?0:-1) { }
     1.7 +      ///\todo Undocumented conversion Node -\> NodeIt.
     1.8 +      NodeIt(const SmartGraph& G, const Node &n) : Node(n) { }
     1.9      };
    1.10  
    1.11      class Edge {