Doxygen:根据用户定义的属性自动生成表

时间:2019-03-01 20:28:50

标签: c html-table doxygen documentation-generation

我想要制作以下的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,则上表应该自动扩展。

已经非常感谢了!

0 个答案:

没有答案