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...>
|