2025-12-10 00:01:32 +08:00

15 lines
399 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef VERSION_H
#define VERSION_H
#define WORKPIECE_SPLICE_VERSION_STRING "1.0.0"
#define WORKPIECE_SPLICE_BUILD_STRING "1"
inline const char* GetWorkpieceSpliceFullVersion() { return "WorkpieceSpliceV1.0.0"; }
// 兼容性函数mainwindow.cpp中使用了这个
inline const char* GetWorkpieceFullVersion() {
return "WorkpieceSpliceV1.0.0";
}
#endif // VERSION_H