[Lemon-commits] [lemon_svn] marci: r1291 - hugo/branches/graph_factory/src/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:44:25 CET 2006
Author: marci
Date: Fri Oct 15 13:32:04 2004
New Revision: 1291
Modified:
hugo/branches/graph_factory/src/lemon/graph_extender.h
Log:
private first(...It)
Modified: hugo/branches/graph_factory/src/lemon/graph_extender.h
==============================================================================
--- hugo/branches/graph_factory/src/lemon/graph_extender.h (original)
+++ hugo/branches/graph_factory/src/lemon/graph_extender.h Fri Oct 15 13:32:04 2004
@@ -81,19 +81,20 @@
return *this;
}
};
-
-// NodeIt& first(NodeIt& i) const {
-// i=NodeIt(*this); return i;
-// }
-// OutEdgeIt& first(OutEdgeIt& i, const Node& p) const {
-// i=OutEdgeIt(*this, p); return i;
-// }
-// InEdgeIt& first(InEdgeIt& i, const Node& p) const {
-// i=InEdgeIt(*this, p); return i;
-// }
-// EdgeIt& first(EdgeIt& i) const {
-// i=EdgeIt(*this); return i;
-// }
+
+ private:
+ NodeIt& first(NodeIt& i) const {
+ // i=NodeIt(*this); return i;
+ }
+ OutEdgeIt& first(OutEdgeIt& i, const Node& p) const {
+ // i=OutEdgeIt(*this, p); return i;
+ }
+ InEdgeIt& first(InEdgeIt& i, const Node& p) const {
+ // i=InEdgeIt(*this, p); return i;
+ }
+ EdgeIt& first(EdgeIt& i) const {
+ // i=EdgeIt(*this); return i;
+ }
// Node tail(const Edge& e) const {
// return Node(graph->tail(static_cast<typename Graph::Edge>(e))); }
More information about the Lemon-commits
mailing list