Reputation: 63738
If I have a class:
class Base
{
public:
///does something
virtual void method()=0;
};
class Child : public Base
{
public:
virtual void method();
};
What will doxygen do for Child::method
? Reuse the base docs, or leave it blank?
Upvotes: 6
Views: 1966
Reputation: 14869
This depends on the INHERIT_DOCS configuration setting. When setting INHERIT_DOCS to YES the documentation will be copied, when setting it to NO the derived method will remain undocumented.
Upvotes: 9