Some concerns about the copy constructors of graph.h
authoralpar
Wed, 14 Apr 2004 12:24:55 +0000
changeset 321048b965204b5
parent 320 190ecba15b33
child 322 a42dacfd0e3e
Some concerns about the copy constructors of graph.h
src/include/skeletons/graph.h
     1.1 --- a/src/include/skeletons/graph.h	Wed Apr 14 11:48:46 2004 +0000
     1.2 +++ b/src/include/skeletons/graph.h	Wed Apr 14 12:24:55 2004 +0000
     1.3 @@ -34,6 +34,9 @@
     1.4      /// Defalult constructor.
     1.5      GraphSkeleton() {}
     1.6      ///Copy consructor.
     1.7 +
     1.8 +    ///\todo It is not clear, what we expect from a copy constructor.
     1.9 +    ///E.g. How to assign the nodes/edges to each other? What about maps?
    1.10      GraphSkeleton(const GraphSkeleton &G) {}
    1.11  
    1.12      /// The base type of the node iterators.