I often have code like this:
#define limit_0 1.0f /**< Limit 0 */
#define limit_1 3.5 /**< Limit 1 */
#define limit_2 2 /**< Limit 2 */
and in this case the Doxygen HTML documentation ("Macro Definition Documentation") looks bad. A lot of overhead and a lot of lines.
I like the compact Enumerations documentation. For the example above I would like to have something like:
name | value | details |
---|---|---|
limit_0 | 1.0f | Limit 0 |
limit_1 | 3.5 | Limit 1 |
limit_2 | 2 | Limit 2 |
Is this possible?