/* * @Description: * @Version: 1.0 * @Autor: lishengyin * @Date: 2022-04-01 15:00:18 * @LastEditors: lishengyin * @LastEditTime: 2022-04-06 15:40:11 */ #ifndef __INS_VERSION_HPP_ #define __INS_VERSION_HPP_ #define INS_MAJOR_VERSION 1 #define INS_MINOR_VERSION 0 #define INS_PATCH_VERSION 0 // 数据类型 namespace ins { /** * @description: 获取版本 * @param {*} * @return {*} */ const char* VersionString(); /** * @description: 主要版本 * @param {*} * @return {*} */ const int MajorVersion(); /** * @description: 次要版本 * @param {*} * @return {*} */ const int MinorVersion(); /** * @description: 修补版本 * @param {*} * @return {*} */ const int PatchVersion(); } // namespace Isns #endif