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 "@JSONCPP_VERSION@" 7#define JSONCPP_VERSION_MAJOR @JSONCPP_VERSION_MAJOR@ 8#define JSONCPP_VERSION_MINOR @JSONCPP_VERSION_MINOR@ 9#define JSONCPP_VERSION_PATCH @JSONCPP_VERSION_PATCH@ 10#define JSONCPP_VERSION_QUALIFIER 11#define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) \ 12 | (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 @JSONCPP_USE_SECURE_MEMORY@ 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