Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在NCBI C++ Toolkit应用程序中设置版本号?
我的意思是当我使用参数 -version 启动程序时显示的版本号。
我通读了文档,但还没有找到。
(我知道这是一个非常具体的问题,但我认为值得一试)
给它一个 void Init(void) 方法,其中包含以下代码:
// the last two parameters are optional CVersionInfo version_info(1, 2, 3, "My App"); SetVersion(version_info);
但是,这目前已被破坏(已提交错误),因此解决方法是为应用程序类提供一个构造函数并从那里调用 SetVersion。