记录不同页面中的枚举

时间:2014-09-18 13:37:14

标签: c++ enums doxygen

我喜欢

/** This enumerator does this and that */
typedef enum {
  VALUE_1, //!< Use this value for this
  VALUE_2  //!< Use this value for that
} MyEnumeration;

这是长篇详细的描述,我想将它们放在单独的页面中,以便保留少量可读的头文件。

我已经阅读过关于单独的页面类和全局对象的内容。从this link我已经看到我能够将描述放在其他页面上,但它只是关于枚举描述,而不是单个值。

我该怎么做?

0 个答案:

没有答案