Hi guys, I'm using doxygen for commenting code. There is, for example, two files:
test1.cpp:
/**
* @namespace SomeNamespace
* @brief Describe it
*/
namespace SomeNamespace
{
...
}
test2.cpp:
// Put comment about namespace again?
namespace SomeNamespace
{
...
}