从文档中删除受保护的部分?

发布于 2024-11-29 07:54:50 字数 102 浏览 2 评论 0原文

我一直在使用 doxygen 为我的项目生成 html 文档。我生成的文档包含一个文件选项卡。如何从中删除受保护的属性和受保护的成员函数字段?

受保护的成员函数 受保护的属性

I have been using doxygen to generate html document for my project. And my generated documents contain a files tab. How could I remove protected attribute and protected member function fields from it?

Protected Member Functions
Protected Attributes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热血少△年 2024-12-06 07:54:50

如果您不希望提取某些内容,则不应包含文档块。在您的版本中提供一个头文件,其中仅包含您希望公开的方法,创建一个单独的头文件供您自己使用。如果您希望内部文档对您有利,您也可以使用 \internal 标志,但这也需要公开隐藏方法的原型。

一般来说:

/** \internal My personal documentation
* Public documentation..................
*/

doxyfile
提取_全部= 0,
HIDE_UNDOC_MEMBERS= 1,
内部文档 = 1 或 0

If you do not wish something to be extracted it should not have a documentation block. In your release provide a header file that has only the methods you wish to be exposed, create a separate header file for your own use. You may also use the \internal flag if you want internal documentation for your benefit, however this would also require that the prototype for hidden methods be exposed.

In general:

/** \internal My personal documentation
* Public documentation..................
*/

doxyfile
EXTRACT_ALL= 0,
HIDE_UNDOC_MEMBERS= 1,
INTERNAL_DOCS = 1 or 0

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文