version.h 803 B

12345678910111213141516171819202122
  1. // DO NOT EDIT. This file (and "version") is a template used by the build system
  2. // (either CMake or Meson) to generate a "version.h" header file.
  3. #ifndef JSON_VERSION_H_INCLUDED
  4. #define JSON_VERSION_H_INCLUDED
  5. #define JSONCPP_VERSION_STRING "1.9.0"
  6. #define JSONCPP_VERSION_MAJOR 1
  7. #define JSONCPP_VERSION_MINOR 9
  8. #define JSONCPP_VERSION_PATCH 0
  9. #define JSONCPP_VERSION_QUALIFIER
  10. #define JSONCPP_VERSION_HEXA \
  11. ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | \
  12. (JSONCPP_VERSION_PATCH << 8))
  13. #ifdef JSONCPP_USING_SECURE_MEMORY
  14. #undef JSONCPP_USING_SECURE_MEMORY
  15. #endif
  16. #define JSONCPP_USING_SECURE_MEMORY 0
  17. // If non-zero, the library zeroes any memory that it has allocated before
  18. // it frees its memory.
  19. #endif // JSON_VERSION_H_INCLUDED