Doxygen and namespaces
This is a wiki page. Be bold and improve it!
If you have any questions about the content on this page, don't hesitate to open a new ticket and we'll do our best to assist you.
In order to document nested namespaces, you can either enable EXTRAC_ALL:
EXTRACT_ALL = YES
Or document each namespace taking care to reference the full path to the nested namespace:
/**
* @namespace root_namespace
* @brief the root_namespace namespace
*/
namespace root_namespace
{
/**
* @namespace root_namespace::component_namespace
* @brief the component_namespace namespace
*/
namespace component_namespace
{
}
}