diff -r 3a98a1aa5a8f -r ef09eee53b09 src/hugo/list_graph.h --- a/src/hugo/list_graph.h Wed Sep 22 07:32:57 2004 +0000 +++ b/src/hugo/list_graph.h Wed Sep 22 08:04:31 2004 +0000 @@ -13,7 +13,7 @@ #include #include -#include +#include #include @@ -80,7 +80,7 @@ /// \todo /// It apears in the documentation as if it were a function definition. - CREATE_MAPS(DefaultMap); + CREATE_MAPS(ArrayMap); public: @@ -445,7 +445,7 @@ /// Creating symmetric map registry. CREATE_SYM_EDGE_MAP_REGISTRY; /// Creating symmetric edge map. - CREATE_SYM_EDGE_MAP(DefaultMap); + CREATE_SYM_EDGE_MAP(ArrayMap); SymListGraph() : ListGraph() { } SymListGraph(const ListGraph &_g) : ListGraph(_g) { } @@ -530,13 +530,12 @@ /// Creating node map registry. CREATE_NODE_MAP_REGISTRY; /// Creating node maps. - CREATE_NODE_MAP(DefaultMap); + CREATE_NODE_MAP(ArrayMap); /// Creating empty map structure for edges. template class EdgeMap { public: - EdgeMap() {} EdgeMap(const Graph&) {} EdgeMap(const Graph&, const Value&) {} @@ -882,7 +881,7 @@ /// Creates edge map registry. CREATE_EDGE_MAP_REGISTRY; /// Creates edge maps. - CREATE_EDGE_MAP(DefaultMap); + CREATE_EDGE_MAP(ArrayMap); /// Imports node maps from the NodeGraphType. IMPORT_NODE_MAP(NodeGraphType, graph.G, EdgeSet, graph);