I'm using doxygen to generate documentation for a project i'm working on.
When reimplementing a public method from a base class in a subclass, doxygen adds
Reimplemented from MyBaseClass.
at the ends of the method's documentation.
This is excepted behavior and this is what I want. However but it doesn't do the same thing when reimplementing a private method. Is there a way to do so ?
Thanks,