# HG changeset patch # User alpar # Date 1147863934 0 # Node ID 923f69c38d550b6fada87effb1d19e1f69f10306 # Parent fce8db72373640f24ff6b7eca6b102010c3cd6e4 Docfix diff -r fce8db723736 -r 923f69c38d55 lemon/concept/graph.h --- a/lemon/concept/graph.h Wed May 17 09:07:24 2006 +0000 +++ b/lemon/concept/graph.h Wed May 17 11:05:34 2006 +0000 @@ -118,6 +118,11 @@ /// be nice. class StaticGraph { +// ///Copy consructor. + +// ///\todo It is not clear, what we expect from a copy constructor. +// ///E.g. How to assign the nodes/edges to each other? What about maps? +// StaticGraph(const StaticGraph& g) { } public: ///\e @@ -126,11 +131,6 @@ /// Defalult constructor. /// StaticGraph() { } - ///Copy consructor. - -// ///\todo It is not clear, what we expect from a copy constructor. -// ///E.g. How to assign the nodes/edges to each other? What about maps? -// StaticGraph(const StaticGraph& g) { } /// The base type of node iterators, /// or in other words, the trivial node iterator.