[Doxygen-users] conditional documentation
Brought to you by:
dimitri
From: Klaus V. <Kla...@ga...> - 2001-08-01 07:43:23
|
Hi everybody! I have the following question. Is the feature of conditional documentation restricted to "docu" only? I want to use the @if - @endif - feature like =20 /** @if MY_LABEL1 * @defgroup ctest1 Group1 * @endif=20 */ =20 =20 =20 /** @if MY_LABEL2 * @defgroup ctest2 Group2 * @endif=20 */ =20 =20 /** @class middle @if MY_LABEL1 =20 @ingroup ctest1=20 description 1 @endif =20 @if MY_LABEL2 =20 @ingroup ctest2 description 2 @endif =20 */ =20 but all used commands (@defgroup / @ingroup ) are ignored in the way that = both groups are generated and that the class is added to each group. The description part itself is = handled correctly. Is this a bug or is it the way doxygen should work or what else is wrong? Thanks Klaus Vrana =20 |