# HG changeset patch # User alpar # Date 1099029883 0 # Node ID 93e9c45703eaef73a10b7368168c7520dece87ca # Parent c94ef40a22ce54a7535456ad38d8026346e1420a A new doxygen group added for graph utilities. diff -r c94ef40a22ce -r 93e9c45703ea doc/groups.dox --- a/doc/groups.dox Wed Oct 27 22:38:50 2004 +0000 +++ b/doc/groups.dox Fri Oct 29 06:04:43 2004 +0000 @@ -53,6 +53,17 @@ @defgroup galgs Graph Algorithms \brief This group describes the several graph algorithms implemented in LEMON. + +This group describes the several graph algorithms +implemented in LEMON. +*/ + +/** +@defgroup gutils General Graph Utilities +\brief This group describes some simple general graph utilities. +@ingroup galgs + +This group describes some simple general graph utilities. */ /** diff -r c94ef40a22ce -r 93e9c45703ea src/lemon/graph_utils.h --- a/src/lemon/graph_utils.h Wed Oct 27 22:38:50 2004 +0000 +++ b/src/lemon/graph_utils.h Fri Oct 29 06:04:43 2004 +0000 @@ -21,14 +21,17 @@ #include -///\ingroup utils +///\ingroup gutils ///\file -///\brief Graph utils. +///\brief Graph utilities. /// namespace lemon { +/// \addtogroup gutils +/// @{ + // counters in the graph /// \brief Function to count the items in the graph. /// @@ -168,7 +171,9 @@ } }; - -} + +/// @} + +} //END OF NAMESPACE LEMON #endif