[Lemon-commits] [lemon_svn] marci: r837 - hugo/trunk/src/hugo

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


Author: marci
Date: Fri May 14 17:19:18 2004
New Revision: 837

Modified:
   hugo/trunk/src/hugo/for_each_macros.h

Log:
misc


Modified: hugo/trunk/src/hugo/for_each_macros.h
==============================================================================
--- hugo/trunk/src/hugo/for_each_macros.h	(original)
+++ hugo/trunk/src/hugo/for_each_macros.h	Fri May 14 17:19:18 2004
@@ -17,6 +17,7 @@
   /// iterators.
   /// \code
   /// Graph g;
+  /// ...
   /// Graph::NodeIt n;
   /// FOR_EACH_GLOB(n, g) {
   /// ...
@@ -33,6 +34,7 @@
   /// iterators.
   /// \code
   /// Graph g;
+  /// ...
   /// Graph::Node v;
   /// Graph::OutEdgeIt e;
   /// FOR_EACH_INC_GLOB(e, g, v) {
@@ -40,6 +42,7 @@
   /// }
   /// typedef BipartiteGraph<Graph> BGraph;
   /// BGraph h;
+  /// ...
   /// BGraph::ClassNodeIt n;
   /// FOR_EACH_INC_GLOB(BGraph::ClassNodeIt, n, h, h.S_CLASS) {
   /// ...
@@ -120,6 +123,7 @@
   /// iterators.
   /// \code
   /// Graph g;
+  /// ...
   /// FOR_EACH_LOC(Graph::NodeIt, n, g) {
   /// ...
   /// }
@@ -134,12 +138,14 @@
   /// iterators.
   /// \code
   /// Graph g;
+  /// ...
   /// Graph::Node v;
   /// FOR_EACH_INC_LOC(Graph::OutEdgeIt, e, g, v) {
   /// ...
   /// }
   /// typedef BipartiteGraph<Graph> BGraph;
   /// BGraph h;
+  /// ...
   /// FOR_EACH_INC_LOC(BGraph::ClassNodeIt, n, h, h.S_CLASS) {
   /// ...
   /// }



More information about the Lemon-commits mailing list