A new doxygen group added for graph utilities.
authoralpar
Fri, 29 Oct 2004 06:04:43 +0000
changeset 94793e9c45703ea
parent 946 c94ef40a22ce
child 948 bc86b64f958e
A new doxygen group added for graph utilities.
doc/groups.dox
src/lemon/graph_utils.h
     1.1 --- a/doc/groups.dox	Wed Oct 27 22:38:50 2004 +0000
     1.2 +++ b/doc/groups.dox	Fri Oct 29 06:04:43 2004 +0000
     1.3 @@ -53,6 +53,17 @@
     1.4  @defgroup galgs Graph Algorithms
     1.5  \brief This group describes the several graph algorithms
     1.6  implemented in LEMON.
     1.7 +
     1.8 +This group describes the several graph algorithms
     1.9 +implemented in LEMON.
    1.10 +*/
    1.11 +
    1.12 +/**
    1.13 +@defgroup gutils General Graph Utilities
    1.14 +\brief This group describes some simple general graph utilities.
    1.15 +@ingroup galgs
    1.16 +
    1.17 +This group describes some simple general graph utilities.
    1.18  */
    1.19  
    1.20  /**
     2.1 --- a/src/lemon/graph_utils.h	Wed Oct 27 22:38:50 2004 +0000
     2.2 +++ b/src/lemon/graph_utils.h	Fri Oct 29 06:04:43 2004 +0000
     2.3 @@ -21,14 +21,17 @@
     2.4  
     2.5  #include <lemon/invalid.h>
     2.6  
     2.7 -///\ingroup utils
     2.8 +///\ingroup gutils
     2.9  ///\file
    2.10 -///\brief Graph utils.
    2.11 +///\brief Graph utilities.
    2.12  ///
    2.13  
    2.14  
    2.15  namespace lemon {
    2.16  
    2.17 +/// \addtogroup gutils
    2.18 +/// @{
    2.19 +
    2.20    // counters in the graph
    2.21    /// \brief Function to count the items in the graph.
    2.22    ///
    2.23 @@ -168,7 +171,9 @@
    2.24       }
    2.25       
    2.26     };
    2.27 -		   		  		 		
    2.28 -}
    2.29 +
    2.30 +/// @}
    2.31 +  
    2.32 +} //END OF NAMESPACE LEMON
    2.33  
    2.34  #endif