[Doxygen-users] is this a bug ? / feature request
Brought to you by:
dimitri
|
From: Kremer M. (PN-SYS/DSA) <Mar...@Te...> - 2001-07-12 09:05:30
|
Hello,
i found a strange feature of doxygen.
The following code does not generate two modules under 1.2.3 and 1.2.8.1 as
it should.
/** \defgroup cfn global c functions
* \brief these are all used c functions
*
* If it does not work for you, please use a newer doxygen version(>1.2.7).
*
* This is a list of all globel c functions. Please note, that
* you have to fence them with two comment blocks.
\verbatim
/** \addtogroup cfn
@{ */
and
/** @} */
\endverbatim
* This can be done either in your .h or your .c file.
*/
/** \defgroup note what to do if it does not show your functions
*
* If it does not work for you, please use a newer doxygen version(>1.2.3).
* You can check your version with 'doxygen -v'.
*/
/** \fn dummy
\ingroup note
*/
Feature request:
Is there a possibility to destinguish doxygen versions?
i want to show a warning only if someone uses 1.2.3.
Even better would be a something like \hasfeature (addtogroup) ...
\endfeature
Or is it possible to combine it with the \if statement(\if
hasnot(addtogroup) ..\endif).
Best Regards
Markus
|