如果子类不提供自己的文档,doxygen 会使用基类文档吗?
如果我有一个类:
class Base
{
public:
///does something
virtual void method()=0;
};
class Child : public Base
{
public:
virtual void method();
};
doxygen 会为 Child::method
做什么?重用基本文档,还是将其留空?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于 INHERIT_DOCS 配置设置。当将 INHERIT_DOCS 设置为 YES 时,将复制文档,当将其设置为 NO 时,派生方法将保持未记录状态。
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.