json/src/modules/json.cppm
Toyosatomimi no Miko e4553073cc Requested changes
Signed-off-by: Toyosatomimi no Miko <110693261+mikomikotaishi@users.noreply.github.com>
2025-06-01 15:49:38 -04:00

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