[Doxygen-users] Grouping classes only
Brought to you by:
dimitri
|
From: Thomas V. <Tho...@al...> - 2001-11-23 09:33:56
|
Hi
I'm trying to use the doxygen (1.2.8.1) grouping features.
I'd like to group classes only (not typedefs, not enums, not members
...).
I've modified my code this way :
/** @addtogroup g1 */
class A { ...
/** @addtogroup g1 */
class B : public A { ...
/** @addtogroup g2 */
class C { ...
Doxygen generates an HTML page with g1 and g2 (modules index), but g1
and g2 contain nothing.
Should I use the "@defgroup" and "@ingroup" tags instead ?
Or "@{" and "@}" ?
I've read in the mail archive several problems using grouping, should I
use the latest doxygen release ?
Thanks
Thomas
|