26 lines
609 B
C
26 lines
609 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
|
|
// 应用名称
|
|
#define RODWELDSEAM_APP_NAME "钢筋焊缝定位"
|
|
|
|
#define RODWELDSEAM_VERSION_STRING "1.0.0"
|
|
#define RODWELDSEAM_BUILD_STRING "1"
|
|
#define RODWELDSEAM_FULL_VERSION_STRING "V" RODWELDSEAM_VERSION_STRING "_" RODWELDSEAM_BUILD_STRING
|
|
|
|
// 获取版本信息的便捷函数
|
|
inline const char* GetRodWeldSeamVersion() {
|
|
return RODWELDSEAM_VERSION_STRING;
|
|
}
|
|
|
|
inline const char* GetRodWeldSeamBuild() {
|
|
return RODWELDSEAM_BUILD_STRING;
|
|
}
|
|
|
|
inline const char* GetRodWeldSeamFullVersion() {
|
|
return RODWELDSEAM_FULL_VERSION_STRING;
|
|
}
|
|
|
|
#endif // VERSION_H
|