nlohmannjson

    [C++] C++ Json 라이브러리 변경: JsonCpp to Nlohmann/json...

    참고: JsonCpp로 적용되어 있는 기존의 Json library를 Nlohman/Json으로 바꾸자를 제안이 있어서 조사하였으며, 조사의 결과는 [C++] C++ Json 라이브러리 성능비교(벤치마크): JsonCpp, Nlohmann/json 에 정리해놓았습니다. 이 문서는 조사의 결과, 성능과 편의성 측면에서 우수한 Nlohman/Json으로 교체하기 위한 과정을 기록한 문서이니 참고 부탁드립니다. JsonCpp to Nlohmann/json Generate json JsonCpp Json::Value json; Nlohmann/json nlohmann::json json; nlohmann::ordered_json ordered_json; // 넣는 순서대로 프린트되는 json 형태 Nlohman..