mirror of
https://github.com/nlohmann/json.git
synced 2025-11-24 03:44:06 +08:00
18 lines
329 B
C++
18 lines
329 B
C++
|
|
module;
|
||
|
|
#include <nlohmann/json.hpp>
|
||
|
|
export module json;
|
||
|
|
|
||
|
|
export namespace nlohmann
|
||
|
|
{
|
||
|
|
using ::nlohmann::adl_serializer;
|
||
|
|
|
||
|
|
using ::nlohmann::basic_json;
|
||
|
|
using ::nlohmann::json_pointer;
|
||
|
|
|
||
|
|
using ::nlohmann::json;
|
||
|
|
using ::nlohmann::ordered_json;
|
||
|
|
using ::nlohmann::ordered_map;
|
||
|
|
|
||
|
|
using ::nlohmann::json_pointer;
|
||
|
|
} // namespace nlohmann
|