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 6 #define JSONCPP_VERSION_STRING "1.9.0" 7 #define JSONCPP_VERSION_MAJOR 1 8 #define JSONCPP_VERSION_MINOR 9 9 #define JSONCPP_VERSION_PATCH 0 10 #define JSONCPP_VERSION_QUALIFIER 11 #define JSONCPP_VERSION_HEXA \ 12 ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | \ 13 (JSONCPP_VERSION_PATCH << 8)) 14 15 #ifdef JSONCPP_USING_SECURE_MEMORY 16 #undef JSONCPP_USING_SECURE_MEMORY 17 #endif 18 #define JSONCPP_USING_SECURE_MEMORY 0 19 // If non-zero, the library zeroes any memory that it has allocated before 20 // it frees its memory. 21 22 #endif // JSON_VERSION_H_INCLUDED 23