[Lemon-commits] [lemon_svn] marci: r1292 - 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 15:46:12 2004
New Revision: 1292
Modified:
hugo/branches/graph_factory/src/lemon/graph_extender.h
Log:
correction of previous private first functions
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 15:46:12 2004
@@ -83,18 +83,10 @@
};
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;
- }
+ NodeIt& first(NodeIt& i) const;
+ OutEdgeIt& first(OutEdgeIt& i, const Node& p) const;
+ InEdgeIt& first(InEdgeIt& i, const Node& p) const;
+ EdgeIt& first(EdgeIt& i) const;
// Node tail(const Edge& e) const {
// return Node(graph->tail(static_cast<typename Graph::Edge>(e))); }
More information about the Lemon-commits
mailing list