我想要制作以下的doxygen表:
Name | Attribute_A | Attribute_B | Attribute_C
ERROR_1 | aa | bb | cc
ERROR_2 | aaa | bbb | ccc
类似于以下代码的代码:
/** Attribute_A : aa
Attribute_B : bb
Attribute_C : cc */
const int32_t ERROR_1;
/** Attribute_A : aaa
Attribute_B : bbb
Attribute_C : ccc */
const int32_t ERROR_2;
如果以后再添加ERROR_3,则上表应该自动扩展。
已经非常感谢了!