将静态变量的初始值的 doxygen 复制到 \file 块

发布于 2024-11-04 19:33:23 字数 531 浏览 3 评论 0原文

我试图将静态变量的初始值的 doxygen 复制到 \file 块中代码的顶部。也就是说,在这样的情况下:

#include <iostream>

/*! \file Test.cxx
 * This is my program.
 * \copydetails HelpText
 */

/*! \var
 * This is my static string.
 */
static std::string HelpText = "Calculate the average magnitude of the vectors in a vector image.\n\n\
    Usage:\n\
    -in InputVectorImageFileName\n";

int main()
{

  return 0;
}

我希望“用法”字符串出现在主文件文档中。正如您所看到的,我尝试了 \copydoc 但它似乎只复制静态变量上方的注释,而不是初始值。请注意,初始值正确显示在变量的文档中。

有什么建议吗?

谢谢。

I am trying to copy the doxygen of the initial value of a static variable to the top of my code in the \file block. That is, in something like this:

#include <iostream>

/*! \file Test.cxx
 * This is my program.
 * \copydetails HelpText
 */

/*! \var
 * This is my static string.
 */
static std::string HelpText = "Calculate the average magnitude of the vectors in a vector image.\n\n\
    Usage:\n\
    -in InputVectorImageFileName\n";

int main()
{

  return 0;
}

I would want the "Usage" string to appear in the main file documentation. As you can see I tried \copydoc but it only seems to copy the comment above the static variable, not the initial value. Note that the initial value appears properly in the variable's documentation.

Any suggestions?

Thanks.

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

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

发布评论

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

评论(1

ぽ尐不点ル 2024-11-11 19:33:23

听起来你的 doxyfile 中的 MAX_INITIALIZER_LINES 配置要么是 0,要么太小。只需给它一个合理的值即可。

Sounds like your MAX_INITIALIZER_LINES config in your doxyfile is either 0 or too small. Just give it a sensible value.

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