pmf
pmf

Reputation: 7759

How to suppress inclusion of source code in doxygen

Is there a flag that prevents doxygen from generating a pretty printed copy of the source (i.e. header) file? I just need the actual documentation and not the link to the actual file.

Upvotes: 2

Views: 222

Answers (1)

doxygen
doxygen

Reputation: 14879

Yes, make sure that

SOURCE_BROWSER   = NO
VERBATIM_HEADERS = NO

in the configuration file.

Upvotes: 3

Related Questions