0

为了使公司范围的标题格式适应 doxygen,我想创建一些将被 doxygen 忽略的自定义标签。我想我可以用别名来做到这一点,但到目前为止只能用其他人替换标签。我要完成的工作:

/** * @company 公司名称 **/

使用像 @company="" 这样的别名。不幸的是,这只是打印没有节名的文本。

有任何想法吗?

4

1 回答 1

1

您可以使用 HTML 样式的注释来隐藏部分,即

/** Show this <!-- but hide this --> and show this again */

或者你可以使用@if...@endif

/** Show this @if VISIBILE but hide this @endif and show this again */

为了节省打字,您可以定义一对别名

ALIASES = hide="@if VISIBLE" endhide="@endif"

然后写

/** Show this @hide but hide this @endhide and show this again */
于 2013-05-17T18:18:13.633 回答