Changeset 1230:daf41fe81728 in lemon-0.x
- Timestamp:
- 03/21/05 10:27:48 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1657
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/iterable_graph_extender.h
r1158 r1230 151 151 private: 152 152 153 // / \todo When (and if) we change the iterators concept to use operator*,154 // / then the following shadowed methods will become superfluous.155 // / But for now these are important safety measures.156 157 void first(NodeIt &) const;158 void first(EdgeIt &) const;159 void first(OutEdgeIt &) const;160 void first(InEdgeIt &) const;153 // /// \todo When (and if) we change the iterators concept to use operator*, 154 // /// then the following shadowed methods will become superfluous. 155 // /// But for now these are important safety measures. 156 157 // void first(NodeIt &) const; 158 // void first(EdgeIt &) const; 159 // void first(OutEdgeIt &) const; 160 // void first(InEdgeIt &) const; 161 161 162 162 }; … … 177 177 typedef typename Parent::UndirEdge UndirEdge; 178 178 179 class UndirEdgeIt : public UndirEdge {179 class UndirEdgeIt : public Parent::UndirEdge { 180 180 const Graph* graph; 181 181 public: … … 199 199 }; 200 200 201 class IncEdgeIt : public UndirEdge {201 class IncEdgeIt : public Parent::UndirEdge { 202 202 const Graph* graph; 203 203 bool forward;
Note: See TracChangeset
for help on using the changeset viewer.