Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Doxygen hide source files

Tags:

c++

doxygen

I just started using Doxygen to generate documentation for my libraries and I found one minor glitch I can't get around.

In the tree view there's the file list and you can click on one of the files and then get the source code. I found a way to get rid of the file list but then I can't see the enums anymore.

Do you know any way to hide the source code from Doxygen?

Also, if you go to bada API reference website you will see in the tree view that there is no Class List or Class Members. There is just the Namespace List that contains the classes. Can I modify Doxygen to do the same?

like image 394
neoadrian91 Avatar asked Aug 22 '10 10:08

neoadrian91


1 Answers

I'm relatively new to doxygen, but disabling SHOW_FILES and VERBATIM_HEADERS options seems to get rid of the source code lists.

like image 160
Mark Tolonen Avatar answered Sep 22 '22 18:09

Mark Tolonen