My question is related to how to comment typedef in template class with Doxygen. I will give an example to illustrate my question:
namespace fundamental
{
The other answers will work, but if your typedef
is so closely tied to the Base
class that you want them to appear in the same Doxygen page, you may want to consider defining a new namespace
(within Fundamental
) that will just include Base
and your typedef.
Then, doxygen will generate a page for that namespace
that will include Base
and your typedef.
Defining a file
documentation will do the same thing, but this may be a more logical layout for your code.