在C#中,我有一些静态只读属性,如下所示:
/// Provides the thingie.
public static readonly SomeClass Thingie = new SomeClass("Thingie Name");
在更大的班级内。 Doxygen在文档中生成一个静态公共属性部分(如预期的那样),其中包含Thingie
的条目,我想要它。但是,它也包括声明,如下:
+--------------------------+-----------------------------------------+
|static readonly SomeClass | Thingie = new SomeClass("Thingie Name");|
| | Provides the thingie. |
+--------------------------+-----------------------------------------+
我只想隐藏= new SomeClass("Thingie Name");
位。这可能吗?
答案 0 :(得分:0)
您可以在配置文件中将MAX_INITIALIZER_LINES
设置为0
以隐藏全局初始化设备。
您还可以使用/** @cond */ thing to hide from doxygen /** @endcond */
隐藏本地内容。