I have been using doxygen to generate html document for my project. And my generated documents contain a files tab. How could I remove that files tab.?
Apart from that I also want to remove all hyperlinks that directs to a code page. Thanks in advance.
I want to remove this part of documentation
The documentation for this class was generated from the following files:
D:/xyx/entities/ClassA.h
D:/xyx/entities/ClassA.cxx
here I have a hyperli开发者_如何学Pythonnk for ClassA.h
Put the following line into your Doxyfile:
SHOW_FILES = NO
To remove the files tab you can customize the html layout used by Doxygen.
Generate a default layout file with
doxygen -l
in the folder where your Doxyfile is, this will create a file named DoxygenLayout.xmlIn the generated layout file, change
visible
tono
in the following line:
<tab type="files" visible="yes"
- Run doxygen again, the layout file will be read from Doxygen without having to change the Doxyfile as long as it has the default name.
SHOW_FILES = NO
would remove files page from Quick Index, to remove the source file used for the documentation from the bottom of the page use
SHOW_USED_FILES = NO
The answers are helpful but there the EXTRACT_ALL option that generates the Class List and File list for me. Try disabling EXTRACT_ALL. It worked for me
精彩评论