6#ifndef NIM_CPP_WRAPPER_UTIL_JSON_CONFIG_H_INCLUDED
7#define NIM_CPP_WRAPPER_UTIL_JSON_CONFIG_H_INCLUDED
19#ifndef JSON_USE_EXCEPTION
20#define JSON_USE_EXCEPTION 1
24#ifndef JSON_USE_NULLREF
25#define JSON_USE_NULLREF 1
34#if defined(JSON_DLL_BUILD)
35#if defined(_MSC_VER) || defined(__MINGW32__)
36#define JSON_API __declspec(dllexport)
37#define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
38#elif defined(__GNUC__) || defined(__clang__)
39#define JSON_API __attribute__((visibility("default")))
42#elif defined(JSON_DLL)
43#if defined(_MSC_VER) || defined(__MINGW32__)
44#define JSON_API __declspec(dllimport)
45#define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
53#if defined(_MSC_VER) && _MSC_VER < 1800
54#error "ERROR: Visual Studio 12 (2013) with _MSC_VER=1800 is the oldest supported compiler with sufficient C++11 capabilities"
57#if defined(_MSC_VER) && _MSC_VER < 1900
60extern JSON_API
int msvc_pre1900_c99_snprintf(
char* outBuf,
size_t size,
const char* format, ...);
61#define jsoncpp_snprintf msvc_pre1900_c99_snprintf
63#define jsoncpp_snprintf std::snprintf
73#define JSONCPP_OVERRIDE override
75#if defined(__clang__) || (defined(__GNUC__) && (__GNUC__ >= 6))
76#define JSON_USE_INT64_DOUBLE_CONVERSION 1
79#if !defined(JSON_IS_AMALGAMATION)
82#define JSONCPP_USING_SECURE_MEMORY 0
89using UInt =
unsigned int;
90#if defined(JSON_NO_INT64)
91using LargestInt = int;
92using LargestUInt =
unsigned int;
98using UInt64 =
unsigned __int64;
100using Int64 = int64_t;
101using UInt64 = uint64_t;
103using LargestInt = Int64;
104using LargestUInt = UInt64;
105#define JSON_HAS_INT64
109using Allocator =
typename std::conditional<JSONCPP_USING_SECURE_MEMORY, SecureAllocator<T>, std::allocator<T>>::type;
110using String = std::basic_string<char, std::char_traits<char>, Allocator<char>>;
111using IStringStream = std::basic_istringstream<String::value_type, String::traits_type, String::allocator_type>;
112using OStringStream = std::basic_ostringstream<String::value_type, String::traits_type, String::allocator_type>;
113using IStream = std::istream;
114using OStream = std::ostream;
119using JSONCPP_STRING = nim_cpp_wrapper_util::Json::String;
120using JSONCPP_ISTRINGSTREAM = nim_cpp_wrapper_util::Json::IStringStream;
121using JSONCPP_OSTRINGSTREAM = nim_cpp_wrapper_util::Json::OStringStream;
122using JSONCPP_ISTREAM = nim_cpp_wrapper_util::Json::IStream;
123using JSONCPP_OSTREAM = nim_cpp_wrapper_util::Json::OStream;
JSON (JavaScript Object Notation).
Definition: allocator.h:14