在 NCBI c++ 中设置版本号工具包应用程序
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
给它一个 void Init(void) 方法,其中包含如下代码:
但是,当前此方法已损坏(错误已提交),因此解决方法是为应用程序类提供一个构造函数并从那里调用 SetVersion。
Give it a void Init(void) method containing code along the following lines:
However, this is currently broken (bug already submitted), so the workaround is to give the application class a constructor and call SetVersion from there.