# HG changeset patch # User alpar # Date 1095856939 0 # Node ID b40afcf42a4d7fda811947a4460d198a5bb43e4d # Parent 2e664d4969d7f5c821aee4d82e39a04d589e2b9e Do not document registry and map defines. diff -r 2e664d4969d7 -r b40afcf42a4d src/hugo/full_graph.h --- a/src/hugo/full_graph.h Wed Sep 22 12:33:30 2004 +0000 +++ b/src/hugo/full_graph.h Wed Sep 22 12:42:19 2004 +0000 @@ -50,9 +50,9 @@ class InEdgeIt; - /// Creating map registries. + // Create map registries. CREATE_MAP_REGISTRIES; - /// Creating node and edge maps. + // Create node and edge maps. CREATE_MAPS(ArrayMap); public: diff -r 2e664d4969d7 -r b40afcf42a4d src/hugo/list_graph.h --- a/src/hugo/list_graph.h Wed Sep 22 12:33:30 2004 +0000 +++ b/src/hugo/list_graph.h Wed Sep 22 12:42:19 2004 +0000 @@ -74,12 +74,9 @@ class OutEdgeIt; class InEdgeIt; - /// Creating map registries. + // Create map registries. CREATE_MAP_REGISTRIES; - /// Creating node and edge maps. - - /// \todo - /// It apears in the documentation as if it were a function definition. + /// Create node and edge maps. CREATE_MAPS(ArrayMap); public: @@ -442,9 +439,9 @@ typedef SymListGraph Graph; - /// Creating symmetric map registry. + // Create symmetric map registry. CREATE_SYM_EDGE_MAP_REGISTRY; - /// Creating symmetric edge map. + // Create symmetric edge map. CREATE_SYM_EDGE_MAP(ArrayMap); SymListGraph() : ListGraph() { } @@ -527,9 +524,9 @@ class OutEdgeIt; class InEdgeIt; - /// Creating node map registry. + // Create node map registry. CREATE_NODE_MAP_REGISTRY; - /// Creating node maps. + // Create node maps. CREATE_NODE_MAP(ArrayMap); /// Creating empty map structure for edges. @@ -878,12 +875,12 @@ class InEdgeIt; - /// Creates edge map registry. + // Create edge map registry. CREATE_EDGE_MAP_REGISTRY; - /// Creates edge maps. + // Create edge maps. CREATE_EDGE_MAP(ArrayMap); - /// Imports node maps from the NodeGraphType. + // Import node maps from the NodeGraphType. IMPORT_NODE_MAP(NodeGraphType, graph.G, EdgeSet, graph); diff -r 2e664d4969d7 -r b40afcf42a4d src/hugo/smart_graph.h --- a/src/hugo/smart_graph.h Wed Sep 22 12:33:30 2004 +0000 +++ b/src/hugo/smart_graph.h Wed Sep 22 12:42:19 2004 +0000 @@ -73,9 +73,9 @@ class OutEdgeIt; class InEdgeIt; - /// Creating map registries. + // Create map registries. CREATE_MAP_REGISTRIES; - /// Creating node and edge maps. + // Create node and edge maps. CREATE_MAPS(ArrayMap); public: @@ -317,9 +317,9 @@ public: typedef SymSmartGraph Graph; - /// Creating symmetric map registry. + // Create symmetric map registry. CREATE_SYM_EDGE_MAP_REGISTRY; - /// Creating symmetric edge map. + // Create symmetric edge map. CREATE_SYM_EDGE_MAP(ArrayMap);