4

I use Doxygen 1.8.4. for documenting some code. I configured a doxygen file for my purposes. After running doxygen there's a treeview on the generated index.html which shows the content:

  • MainPage
  • Files
    • File List
    • File Members

I want to know how to configure the doxygen file in order to remove the "File Members" chapter from the treeview.

4

1 回答 1

3

您需要使用布局文件(通过在终端中运行 doxygen -l 生成)。然后将其添加到设置 LAYOUT_FILE = layoutfile.xml 下的设置文件中

在布局文件中编辑该行 <tab type="globals" visible="no" title="" intro=""/>并将可见设置为“否”。

可以在http://www.doxygen.nl/manual/customize.html中找到有关您可以使用布局文件做什么的更多信息

于 2014-08-13T08:57:00.980 回答