OpenDDS  Snapshot(2023/04/28-20:55)
RapidJsonWrapper.h
Go to the documentation of this file.
1 #ifndef OPENDDS_DCPS_RAPIDJSONWRAPPER_H
2 #define OPENDDS_DCPS_RAPIDJSONWRAPPER_H
3 
4 #ifdef __GNUC__
5 # pragma GCC diagnostic push
6 # if defined(__has_warning)
7 # if __has_warning("-Wclass-memaccess")
8 # pragma GCC diagnostic ignored "-Wclass-memaccess"
9 # endif
10 # elif __GNUC__ > 7
11 # pragma GCC diagnostic ignored "-Wclass-memaccess"
12 # endif
13 #endif
14 #include <rapidjson/document.h>
15 #include <rapidjson/stringbuffer.h>
16 #include <rapidjson/istreamwrapper.h>
17 #include <rapidjson/ostreamwrapper.h>
18 #include <rapidjson/writer.h>
19 #include <rapidjson/reader.h>
20 #include <rapidjson/prettywriter.h>
21 #ifdef __GNUC__
22 # pragma GCC diagnostic pop
23 #endif
24 
25 #endif