I'm starting documenting all of my code with doxygen. I´ve no problem with file documentation but i runinto a small problem when generating documentation for several files.
For example:
In some header files (I´m using only C/C++ code projects) i have the following code:
#include "../config/compiler.h" ///< Compiler flags
namespace nge ///< NGE namespace
{
... some code...
}
After running doxywizard if I look for the documentation for namepaces I will see the NGE namespace but instead of getting:
NGE | NGE namespace
I get
NGE | Compiler flags
this occurs even if I swap /// NGE namespace
with /// @namespace NGE namespace
Cam somebody please explain me where I´m making the mistake ??