Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove files tab from html file generated by doxygen?

Tags:

doxygen

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 hyperlink for ClassA.h

like image 386
Apoorva sahay Avatar asked Dec 12 '22 10:12

Apoorva sahay


1 Answers

Put the following line into your Doxyfile:

 SHOW_FILES = NO
like image 148
Tobias Schlegel Avatar answered May 17 '23 10:05

Tobias Schlegel