[Lemon-commits] [lemon_svn] alpar: r1212 - hugo/trunk/src/hugo

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:43:54 CET 2006


Author: alpar
Date: Wed Sep 22 14:42:19 2004
New Revision: 1212

Modified:
   hugo/trunk/src/hugo/full_graph.h
   hugo/trunk/src/hugo/list_graph.h
   hugo/trunk/src/hugo/smart_graph.h

Log:
Do not document registry and map defines.

Modified: hugo/trunk/src/hugo/full_graph.h
==============================================================================
--- hugo/trunk/src/hugo/full_graph.h	(original)
+++ hugo/trunk/src/hugo/full_graph.h	Wed Sep 22 14:42:19 2004
@@ -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:

Modified: hugo/trunk/src/hugo/list_graph.h
==============================================================================
--- hugo/trunk/src/hugo/list_graph.h	(original)
+++ hugo/trunk/src/hugo/list_graph.h	Wed Sep 22 14:42:19 2004
@@ -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);
     
     

Modified: hugo/trunk/src/hugo/smart_graph.h
==============================================================================
--- hugo/trunk/src/hugo/smart_graph.h	(original)
+++ hugo/trunk/src/hugo/smart_graph.h	Wed Sep 22 14:42:19 2004
@@ -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);
 
 



More information about the Lemon-commits mailing list