3
我使用Doxygen來記錄我的C++(Qt)項目的JavaScript API。這個想法是爲JavaScript接口編寫一個特定的文檔,而我們通常爲C++類編寫一個。 一個例子(datasource.dox)看起來是這樣的:在Doxygen中強制記錄JavaScript API的函數文檔
\addtogroup JavaScriptAPI
@{
...
\class DataSource
\brief DataSource is the .... some doc goes here ....
\section formats Supported formats
....
\fn isOpen()
\brief returns true if the data source is currently open...
...
@}
生成的幫助看起來不錯w.r.t.類描述(或'object'描述),但函數文檔(isOpen(),...)缺失。 Doxygen創建如下警告消息: 警告:文檔函數「bool isOpen」未被聲明或定義。
現在的問題:我可以以某種方式強迫doxygen使用我的\ fn-d函數描述嗎?這將是很好,如果doxygen的創造的一切對我來說這些成員指數...