mirror of
https://github.com/nlohmann/json.git
synced 2025-06-07 23:42:37 +08:00
23 lines
625 B
C++
23 lines
625 B
C++
module;
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
export module nlohmann.json;
|
|
|
|
export namespace nlohmann {
|
|
template <typename T = void, typename SFINAE = void>
|
|
using adl_serializer = ::nlohmann::adl_serializer<T, SFINAE>;
|
|
|
|
using basic_json = ::nlohmann::basic_json<>;
|
|
|
|
using json = ::nlohmann::json;
|
|
|
|
template <typename RefStringType>
|
|
using json_pointer = ::nlohmann::json_pointer<RefStringType>;
|
|
|
|
using ::nlohmann::ordered_json;
|
|
|
|
template <class Key, class T, class IgnoredLess, class Allocator>
|
|
using ordered_map = ::nlohmann::ordered_map<Key, T, IgnoredLess, Allocator>;
|
|
} // namespace nlohmann
|