summaryrefslogtreecommitdiff
path: root/json4cpp/src/modules/json.cppm
blob: 623d8cb81ff821c1e7ca2302a952472f3cc531f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module;

#include <nlohmann/json.hpp>

export module nlohmann.json;

export namespace nlohmann {
    using ::nlohmann::adl_serializer;
    using ::nlohmann::basic_json;
    using ::nlohmann::json;
    using ::nlohmann::json_pointer;
    using ::nlohmann::ordered_json;
    using ::nlohmann::ordered_map;
}  // namespace nlohmann

NLOHMANN_JSON_NAMESPACE_BEGIN

namespace detail
{
    export using NLOHMANN_JSON_NAMESPACE::detail::json_sax_dom_callback_parser;
    export using NLOHMANN_JSON_NAMESPACE::detail::unknown_size;
} // namespace detail

export using NLOHMANN_JSON_NAMESPACE::adl_serializer;
export using NLOHMANN_JSON_NAMESPACE::basic_json;
export using NLOHMANN_JSON_NAMESPACE::json;
export using NLOHMANN_JSON_NAMESPACE::json_pointer;
export using NLOHMANN_JSON_NAMESPACE::ordered_json;
export using NLOHMANN_JSON_NAMESPACE::ordered_map;
export using NLOHMANN_JSON_NAMESPACE::to_string;

NLOHMANN_JSON_NAMESPACE_END