Pavel Krymets
Pavel Krymets

Reputation: 6293

Removing system namespaces in doxygen

When I generate documentation using Doxygen I get several empty packages representing system namespaces like 'Linq' and so on. The question is how to get rid of them?

Upvotes: 1

Views: 524

Answers (2)

TOOL
TOOL

Reputation: 132

I've removed them by adding this in the Doxyfile

EXCLUDE_SYMBOLS        = System

Upvotes: 0

Holger
Holger

Reputation: 36

I had the same problem and found one solution. Putting the using ... lines between \cond and \endcond tags hides them in the helpfile output.
I'm not very glad about that, changing something in the doxy file would be easier. Maybe there's another better solution?
The problem is new with the new doxygen version v1.8.1.1

Upvotes: 2

Related Questions