Doxygen忽略了单词和函数

时间:2013-03-11 13:11:50

标签: doxygen pascal

我有以下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 . @ " " 

你有一个想法,为什么它总是削减“帕斯卡”?为什么它不写完整的内容?

另一个奇怪的克制是,如果我只写这个:

{* @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作为源代码文档。

0 个答案:

没有答案
相关问题