0

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,

Xaqq
  • 4,308
  • 2
  • 25
  • 38
  • Maybe [this page](http://stackoverflow.com/questions/562763/doxygen-hiding-private-protected-method-and-tips) could help you out. – fiscblog Jun 13 '13 at 14:41
  • @fiscblog Thanks, but unfortunately it doesn't :(. The method is extracted, but the "Reimplemented from ..." is not appended at the end of the function's documention. – Xaqq Jun 13 '13 at 14:45

1 Answers1

1

Try setting the member INLINE_INHERITED_MEMB to YES .

Constructors, destructors and assignment operators of the base classes will not be shown

fiscblog
  • 694
  • 1
  • 12
  • 27
  • This doesn't work for me. It simply removes the "Reimplemented from ..." from the public method reimplementation, and does nothing for private method. Still, thanks. – Xaqq Jun 13 '13 at 15:20