私は次のdoxygenファイルを持っています:
/** @mainpage PConnect
@section s_definition Definition
This guide is the main documentation of Pascal/Delphi Connector Wrapper for the CGM Assist.
@section s_definition Definition
The PConnect gives you the ability to use the Connector of the CGM-Assist by using Pascal/Delphi functions.
@note For further information take a look into the "Implementation Guide"
*/
ここで、この.doxファイルを生成しようとしますが、常にこれを出力として取得します。
Definition
This guide is the main documentation of /Delphi Connector Wrapper for the CGM Assist.
Definition
The PConnect gives you the ability to use the Connector of the CGM-Assist by using /Delphi . @ " "
なぜそれがいつも「パスカル」を切り取るのか、あなたは考えを持っていますか?そして、なぜそれは完全なコンテンツを書かないのですか?
もう1つの奇妙な抑制は、これを書くだけの場合です。
{* @brief A simple Key/Value Record
* @param key Key
* @param value Value to the key
}
Map = record
var key: PAnsiChar;
var value: PAnsiChar;
end;
その後、ドキュメントにレコードが表示されません。しかし、この前に別のレコードを書くと、次のようになります。
//Only if this record is written here, the "Map" will be shown in documentation xD
Test = Record
var test: PAnsiChar;
end;
{* @brief A simple Key/Value Record
* @param key Key
* @param value Value to the key
}
Map = record
var key: PAnsiChar;
var value: PAnsiChar;
end;
次に、ドキュメントにレコード「マップ」が表示されます。
PS:ソースコードのドキュメントにpas2doxを使用しています。