1.1 --- a/lemon/concept/graph.h Wed May 17 09:07:24 2006 +0000
1.2 +++ b/lemon/concept/graph.h Wed May 17 11:05:34 2006 +0000
1.3 @@ -118,6 +118,11 @@
1.4 /// be nice.
1.5 class StaticGraph
1.6 {
1.7 +// ///Copy consructor.
1.8 +
1.9 +// ///\todo It is not clear, what we expect from a copy constructor.
1.10 +// ///E.g. How to assign the nodes/edges to each other? What about maps?
1.11 +// StaticGraph(const StaticGraph& g) { }
1.12 public:
1.13 ///\e
1.14
1.15 @@ -126,11 +131,6 @@
1.16 /// Defalult constructor.
1.17 ///
1.18 StaticGraph() { }
1.19 - ///Copy consructor.
1.20 -
1.21 -// ///\todo It is not clear, what we expect from a copy constructor.
1.22 -// ///E.g. How to assign the nodes/edges to each other? What about maps?
1.23 -// StaticGraph(const StaticGraph& g) { }
1.24
1.25 /// The base type of node iterators,
1.26 /// or in other words, the trivial node iterator.