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

Almost everything in my documentation ends with the namespace :: prefix before it. (where namespace is the name of my namespace)

Is there a way to create documentation without part of the namespace?

For example:

my_namespace :: MyClass :: member

becomes:

MyClass :: member

This will make everything more readable.

+7
namespaces doxygen
source share
2 answers

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

+5
source share

I know this is old, but if someone looks in again.

You can set SHOW_NAMESPACES to NO in the configuration file.

It is also located on the "DoxyWizard", "Expert" tab in the "Build Theme" section.

+1
source share

All Articles