0

我使用 Doxygen 来记录我的代码,但我找不到如何#define在文档中添加值。我试过这个发现here

  /**
  * @brief test
  */
   #define definedValue @"aValue"
4

2 回答 2

0

如果您希望定义的值出现在文档中,您可以使用\showinitializer命令。文档注释也可以与 using 出现在同一行#define

#define definedValue @"aValue" /**< Description of defined variable */
于 2013-04-20T13:41:49.463 回答
0

This should work:

/**
 * \def definedValue
 *
 * @brief test
 */
#define definedValue @"aValue"

See also: http://www.doxygen.nl/manual/commands.html#cmddef

于 2015-12-03T11:34:40.900 回答