ins_version.hpp 872 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * @Description:
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2022-04-01 15:00:18
  6. * @LastEditors: lishengyin
  7. * @LastEditTime: 2022-04-06 15:40:11
  8. */
  9. #ifndef __INS_VERSION_HPP_
  10. #define __INS_VERSION_HPP_
  11. #define INS_MAJOR_VERSION 1
  12. #define INS_MINOR_VERSION 0
  13. #define INS_PATCH_VERSION 0
  14. // 数据类型
  15. namespace ins
  16. {
  17. /**
  18. * @description: 获取版本
  19. * @param {*}
  20. * @return {*}
  21. */
  22. const char* VersionString();
  23. /**
  24. * @description: 主要版本
  25. * @param {*}
  26. * @return {*}
  27. */
  28. const int MajorVersion();
  29. /**
  30. * @description: 次要版本
  31. * @param {*}
  32. * @return {*}
  33. */
  34. const int MinorVersion();
  35. /**
  36. * @description: 修补版本
  37. * @param {*}
  38. * @return {*}
  39. */
  40. const int PatchVersion();
  41. } // namespace Isns
  42. #endif