Nathan Osman
Nathan Osman

Reputation: 73165

Is there a way to tell Doxygen to ignore (all) namespaces?

Just about everything in my documentation ends up with the namespace:: prefix in front of it. (where namespace is the name of my namespace)

Is there a way to have the documentation generated without the namespace part?

For example:

my_namespace::myclass::member

becomes:

myclass::member

It would make everything more readable.

Upvotes: 8

Views: 4822

Answers (2)

discordia28
discordia28

Reputation: 73

I know this is old but if anyone comes looking again.

You can set SHOW_NAMESPACES to NO in configuration file.

It is also in DoxyWizard, Expert tab under Build topic.

Upvotes: 1

Nathan Osman
Nathan Osman

Reputation: 73165

Turns out the answer was simple: you have to set HIDE_SCOPE_NAMES to YES in the configuration file.

Upvotes: 6

Related Questions