Re: [Doxygen-users] Grouping classes only
Brought to you by:
dimitri
From: Carlo W. <ca...@al...> - 2001-11-24 16:47:27
|
On Fri, Nov 23, 2001 at 10:33:10AM +0100, Thomas Vanier wrote: > I've modified my code this way : > > /** @addtogroup g1 */ > class A { ... I am not sure, but I think that addtogroup doesn't work on class A in this case. You need to add /** \{ */ /** \} */, for example: /** @addtogroup g1 */ /** @{ */ class A { }; /** @} */ Or use /** @class A * @brief ... * * blah blah description of class A * * @ingroup g1 */ class A { ... -- Carlo Wood <ca...@al...> |