23 lines
576 B
C
23 lines
576 B
C
#ifndef WELDSEAM_VERSION_H
|
|
#define WELDSEAM_VERSION_H
|
|
|
|
#define WELDSEAM_APP_NAME "焊缝定位"
|
|
#define WELDSEAM_VERSION_STRING "1.0.0"
|
|
#define WELDSEAM_BUILD_STRING "1"
|
|
#define WELDSEAM_FULL_VERSION_STRING "V" WELDSEAM_VERSION_STRING "_" WELDSEAM_BUILD_STRING
|
|
|
|
// 获取版本信息的便捷函数
|
|
inline const char* GetWeldSeamVersion() {
|
|
return WELDSEAM_VERSION_STRING;
|
|
}
|
|
|
|
inline const char* GetWeldSeamBuild() {
|
|
return WELDSEAM_BUILD_STRING;
|
|
}
|
|
|
|
inline const char* GetWeldSeamFullVersion() {
|
|
return WELDSEAM_FULL_VERSION_STRING;
|
|
}
|
|
|
|
#endif // WELDSEAM_VERSION_H
|