With the appropriate comment in front of it, Doxygen generates entries for class
, struct
and namespace
declarations but not occurrences of typedef
or using
.
In this example
/// here is my typedef
typedef int MyTypedef;
/// here is my namespace
namespace MyNamespace
{
/// here is my other typedef
typedef int MyOtherTypedef;
}
I get an entry in the documentation for MyNamespace
and even MyOtherTypedef
but there is nothing for MyTypedef
. Why not?