# HG changeset patch # User alpar # Date 1081945495 0 # Node ID 048b965204b54e17896a0ff8132fed08fef3ed12 # Parent 190ecba15b33b5a1f24b8d90769b3833cc039922 Some concerns about the copy constructors of graph.h diff -r 190ecba15b33 -r 048b965204b5 src/include/skeletons/graph.h --- a/src/include/skeletons/graph.h Wed Apr 14 11:48:46 2004 +0000 +++ b/src/include/skeletons/graph.h Wed Apr 14 12:24:55 2004 +0000 @@ -34,6 +34,9 @@ /// Defalult constructor. GraphSkeleton() {} ///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? GraphSkeleton(const GraphSkeleton &G) {} /// The base type of the node iterators.