我喜欢
/** 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我已经看到我能够将描述放在其他页面上,但它只是关于枚举描述,而不是单个值。
我该怎么做?