CppSerialization 1.0.5.0
C++ Serialization Library
Loading...
Searching...
No Matches
json.h
Go to the documentation of this file.
1
9#ifndef CPPSERIALIZATION_JSON_JSON_H
10#define CPPSERIALIZATION_JSON_JSON_H
11
12#include "../exceptions.h"
13
14#if defined(__clang__)
15#pragma clang system_header
16#elif defined(__GNUC__)
17#pragma GCC system_header
18#elif defined(_MSC_VER)
19#pragma system_header
20#endif
21
22#define RAPIDJSON_HAS_STDSTRING 1
23
24#define RAPIDJSON_NAMESPACE CppSerialization::JSON
25#define RAPIDJSON_NAMESPACE_BEGIN namespace CppSerialization { namespace JSON {
26#define RAPIDJSON_NAMESPACE_END } }
27
28#include <rapidjson/document.h>
29#include <rapidjson/writer.h>
30
31namespace CppSerialization {
32
37namespace JSON {
38
39} // namespace JSON
40
41} // namespace CppSerialization
42
43#endif // CPPSERIALIZATION_JSON_JSON_H
C++ Serialization project definitions.
Definition exceptions.h:14