26 lines
675 B
C
Raw Normal View History

#ifndef VERSION_H
#define VERSION_H
// 应用名称
#define RODANDBARPOSITION_APP_NAME "棒材定位"
#define RODANDBARPOSITION_VERSION_STRING "1.1.0"
#define RODANDBARPOSITION_BUILD_STRING "1"
#define RODANDBARPOSITION_FULL_VERSION_STRING "V" RODANDBARPOSITION_VERSION_STRING "_" RODANDBARPOSITION_BUILD_STRING
// 获取版本信息的便捷函数
inline const char* GetRodAndBarPositionVersion() {
return RODANDBARPOSITION_VERSION_STRING;
}
inline const char* GetRodAndBarPositionBuild() {
return RODANDBARPOSITION_BUILD_STRING;
}
inline const char* GetRodAndBarPositionFullVersion() {
return RODANDBARPOSITION_FULL_VERSION_STRING;
}
#endif // VERSION_H