How to exclude the appearance of private headers in the source browser?

I installed SOURCE_BROWSER = NOand VERBATIM_HEADERS = YESbecause I want clients to be able to see header files. However, I just want to let them see certain headlines. How is the best way to do this.

Thanks in advance for your help!


EDIT . This works, but I will be interested in any other better ways.

EXCLUDE_PATTERNS       = */.svn/* *debug* *impl* *boost*
+3
source share
1 answer

If the tag \internaldoes not work, you can try tags \cond ... \endcondto mark the part of the code that should be hidden from Doxygen.

+3
source

Source: https://habr.com/ru/post/1732297/


All Articles