2013-05-15 88 views
0

爲了使公司範圍的標題格式適應doxygen,我想創建一些將被doxygen忽略的自定義標記。我想我可以用別名來做到這一點,但迄今爲止只能用其他標籤替換標籤。我試圖做到:Doxygen別名忽略行

/** * 公司@company名稱 **/

與像@公司= 「」 的別名。不幸的是,這只是打印沒有節名的文本。

任何想法?

回答

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 */