在 NCBI c++ 中设置版本号工具包应用程序

发布于 2024-08-10 08:00:02 字数 228 浏览 6 评论 0原文

如何在 NCBI C++ Toolkit 应用程序中设置版本号?

我的意思是当我使用参数 -version 启动程序时显示的版本号。

我通读了文档,但还没有找到。

(我知道这是一个非常具体的问题,但我认为值得一试)

How can I set the version number in a NCBI C++ Toolkit Application?

I mean the version number which is displayed when I start my program with the parameter -version.

I read through the docs, but have not found it yet.

(I know this is a highly specific question, but I figured it was worth a try)

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

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

发布评论

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

评论(1

‖放下 2024-08-17 08:00:02

给它一个 void Init(void) 方法,其中包含如下代码:

// the last two parameters are optional
CVersionInfo version_info(1, 2, 3, "My App");
SetVersion(version_info);

但是,当前此方法已损坏(错误已提交),因此解决方法是为应用程序类提供一个构造函数并从那里调用 SetVersion。

Give it a void Init(void) method containing code along the following lines:

// the last two parameters are optional
CVersionInfo version_info(1, 2, 3, "My App");
SetVersion(version_info);

However, this is currently broken (bug already submitted), so the workaround is to give the application class a constructor and call SetVersion from there.

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