views:

187

answers:

1

Hi, 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!

csmithmaui

EDIT: SOLVED! I actually just figured out one way to do it.

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

This worked good enough for me. I would be interested in any other better ways though.

+1  A: 

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

mouviciel
@mouviciel: thanks alot for your answer. Good to know!
csmithmaui