我正在使用 Delphi,我需要准备一些文档。一种可能的解决方案是将 Doxygen 与 Pas2Dox 过滤器一起使用。
我目前正在使用 pas2dox-0.50rc1.exe 过滤器和 Doxygen 向导 1.8.3.1。我正在努力正确设置 Doxygen 以在 Delphi 中显示我的评论,但问题是我不再确定 Delphi 中正确的评论格式是什么。我搜索了互联网,但找不到任何关于如何使用 delphi 成功生成 html 文档的教程或示例。
是否有人可以与我分享一些如何实现这一目标的技巧?
我目前的评论如下:
{*------------------------------------------------------------------------------
test
@param AGraphicsOwner ParameterDescription
@param ASettingsPath ParameterDescription
@param AEngineType ParameterDescription
@return ResultDescription
------------------------------------------------------------------------------*}
constructor TBaseEngine.Create(AGraphicsOwner: HWND;
ASettingsPath: PAnsiChar;
AEngineType: byte);
谢谢!!