1.1 --- a/src/lemon/iterable_graph_extender.h Mon Mar 21 07:47:00 2005 +0000
1.2 +++ b/src/lemon/iterable_graph_extender.h Mon Mar 21 09:27:48 2005 +0000
1.3 @@ -150,14 +150,14 @@
1.4
1.5 private:
1.6
1.7 - /// \todo When (and if) we change the iterators concept to use operator*,
1.8 - /// then the following shadowed methods will become superfluous.
1.9 - /// But for now these are important safety measures.
1.10 + // /// \todo When (and if) we change the iterators concept to use operator*,
1.11 + // /// then the following shadowed methods will become superfluous.
1.12 + // /// But for now these are important safety measures.
1.13
1.14 - void first(NodeIt &) const;
1.15 - void first(EdgeIt &) const;
1.16 - void first(OutEdgeIt &) const;
1.17 - void first(InEdgeIt &) const;
1.18 + // void first(NodeIt &) const;
1.19 + // void first(EdgeIt &) const;
1.20 + // void first(OutEdgeIt &) const;
1.21 + // void first(InEdgeIt &) const;
1.22
1.23 };
1.24
1.25 @@ -176,7 +176,7 @@
1.26
1.27 typedef typename Parent::UndirEdge UndirEdge;
1.28
1.29 - class UndirEdgeIt : public UndirEdge {
1.30 + class UndirEdgeIt : public Parent::UndirEdge {
1.31 const Graph* graph;
1.32 public:
1.33
1.34 @@ -198,7 +198,7 @@
1.35
1.36 };
1.37
1.38 - class IncEdgeIt : public UndirEdge {
1.39 + class IncEdgeIt : public Parent::UndirEdge {
1.40 const Graph* graph;
1.41 bool forward;
1.42 friend class IterableUndirGraphExtender;