mirror of
https://github.com/nlohmann/json.git
synced 2026-07-25 23:49:01 +00:00
* Simplify module API Signed-off-by: Miko <110693261+mikomikotaishi@users.noreply.github.com> * Forgot missing newline Signed-off-by: Miko <110693261+mikomikotaishi@users.noreply.github.com> --------- Signed-off-by: Miko <110693261+mikomikotaishi@users.noreply.github.com>
15 lines
329 B
C++
15 lines
329 B
C++
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
|