Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove function list from doxygen

Tags:

c++

doxygen

I'm running into a problem with the doxygen documentation. In the "Files" section, is it possible to remove the functions list at the top of the page with a flag in the doxyfile ? If not, is there a way to insert a section (with a doxygen command in my source code in cpp) before this "Functions" list.

like image 344
Haimo Avatar asked Dec 20 '25 01:12

Haimo


1 Answers

Set EXTRACT_ALL to NO.

Set HIDE_UNDOC_MEMBERS to YES.

Don't document the members you want hidden.

You can also use EXCLUDE_SYMBOLS to exclude some documented items: The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names (namespaces, classes, functions, etc.) that should be excluded from the output. The symbol name can be a fully qualified name, a word, or if the wildcard * is used, a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test

like image 51
Denise Skidmore Avatar answered Dec 22 '25 16:12

Denise Skidmore