Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove "File Members"

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.

like image 638
MichaelXanadu Avatar asked Sep 12 '25 12:09

MichaelXanadu


1 Answers

You need to use a layout file (generated by running doxygen -l in terminal). Then add it to your settings file under the setting LAYOUT_FILE = layoutfile.xml

In the layoutfile edit the line with <tab type="globals" visible="no" title="" intro=""/> and set visible to "no".

More info on what you can do with the layoutfile can be found at http://www.doxygen.nl/manual/customize.html

like image 152
emiliojorge Avatar answered Sep 16 '25 08:09

emiliojorge