# HG changeset patch # User alpar # Date 1077891647 0 # Node ID e342e66d9762226e8bb2662646a3d05025f0bab9 # Parent 1e5060d1fa1dc0e1ee8adcc52e7e76bb905d0c94 Zoli listaja diff -r 1e5060d1fa1d -r e342e66d9762 src/work/alpar/smart_graph.h --- a/src/work/alpar/smart_graph.h Fri Feb 27 13:58:41 2004 +0000 +++ b/src/work/alpar/smart_graph.h Fri Feb 27 14:20:47 2004 +0000 @@ -76,6 +76,7 @@ /* default constructor */ SmartGraph() : nodes(), edges() { } + SmartGraph(const SmartGraph &_g) : nodes(_g.nodes), edges(_g.edges) { } ~SmartGraph() {