How to exclude private headers from showing up in source browser?

大兔子大兔子 提交于 2019-12-07 08:11:07

问题


I have set SOURCE_BROWSER = NO and VERBATIM_HEADERS = YES because I want clients to be able to see the header files. However, I only want to allow them to see certain headers. How is the best way to do this.

Thanks in advance for any help!


EDIT: This appears to work, but I would be interested in any other better ways.

EXCLUDE_PATTERNS       = */.svn/* *debug* *impl* *boost*

回答1:


If \internal tag does not work, you can try \cond ... \endcond tags for marking a portion of code to be hidden from Doxygen.



来源:https://stackoverflow.com/questions/2242326/how-to-exclude-private-headers-from-showing-up-in-source-browser

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!