如何在 Doxygen 中记录一个单词,该单词是代码中的实体名称,但不是当前上下文中的实体名称?

发布于 2024-12-20 06:49:28 字数 221 浏览 3 评论 0原文

我的程序包含一个名为“Common”的命名空间和另一个名为“CGI”的命名空间。当我为 CGI 编写如下描述时:

/*! \namespace CGI
  \brief The CGI - Common Gateway Interface module.
*/

CGI 扩展中的“Common”一词被链接/引用到命名空间 Common。我该如何防止这种情况?

My program contains a namespace called 'Common' and another namespace called 'CGI'. When I write description for CGI as follows:

/*! \namespace CGI
  \brief The CGI - Common Gateway Interface module.
*/

The 'Common' word in the expansion of CGI gets linked/referenced to the namespace Common. How do I prevent this?

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

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

发布评论

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

评论(1

娇女薄笑 2024-12-27 06:49:28

您应该能够通过在单词前面放置 % 来防止自动链接。请参阅 http://www.doxygen.nl/manual/autolink.html 了解更多信息细节。

You should be able to prevent autolinking by putting % in front of the word. See http://www.doxygen.nl/manual/autolink.html for more details.

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