9 lines
151 B
C++
9 lines
151 B
C++
#pragma once
|
|
|
|
// json头文件
|
|
#include <nlohmann/json.hpp>
|
|
|
|
namespace XNSim {
|
|
// json类型别名
|
|
using XN_JSON = nlohmann::json;
|
|
} // namespace XNSim
|