[Doxygen-users] MACRO Question
Brought to you by:
dimitri
From: <dav...@ca...> - 2001-05-17 12:03:02
|
Hi, Is it possible to hide in the doxygen documentation the body of a C macro ? Example: I define the following macro: #define MAX(a, b) (((a)>(b))?(a):(b)) with the doxygen comment: /*! \def MAX(a,b) \brief A macro that returns the maximum of \a a and \a b. */ I would like to have the following result: Defines #define MAX(a, b) A macro that returns the maximum of a and b. More... Thanks, David |