├── .clang-format ├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── extern └── CMakeLists.txt ├── include ├── curl_t.h ├── json_to_cpp.h ├── json_to_cpp_config.h ├── ti_value.h └── types │ ├── ti_array.h │ ├── ti_base.h │ ├── ti_boolean.h │ ├── ti_integral.h │ ├── ti_kv.h │ ├── ti_null.h │ ├── ti_object.h │ ├── ti_real.h │ ├── ti_string.h │ └── ti_types.h ├── src ├── curl_t.cpp ├── json_to_cpp.cpp ├── main.cpp ├── ti_array.cpp ├── ti_kv.cpp └── ti_object.cpp ├── test.json └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/README.md -------------------------------------------------------------------------------- /extern/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/extern/CMakeLists.txt -------------------------------------------------------------------------------- /include/curl_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/curl_t.h -------------------------------------------------------------------------------- /include/json_to_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/json_to_cpp.h -------------------------------------------------------------------------------- /include/json_to_cpp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/json_to_cpp_config.h -------------------------------------------------------------------------------- /include/ti_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/ti_value.h -------------------------------------------------------------------------------- /include/types/ti_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_array.h -------------------------------------------------------------------------------- /include/types/ti_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_base.h -------------------------------------------------------------------------------- /include/types/ti_boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_boolean.h -------------------------------------------------------------------------------- /include/types/ti_integral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_integral.h -------------------------------------------------------------------------------- /include/types/ti_kv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_kv.h -------------------------------------------------------------------------------- /include/types/ti_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_null.h -------------------------------------------------------------------------------- /include/types/ti_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_object.h -------------------------------------------------------------------------------- /include/types/ti_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_real.h -------------------------------------------------------------------------------- /include/types/ti_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_string.h -------------------------------------------------------------------------------- /include/types/ti_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/include/types/ti_types.h -------------------------------------------------------------------------------- /src/curl_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/src/curl_t.cpp -------------------------------------------------------------------------------- /src/json_to_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/src/json_to_cpp.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ti_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/src/ti_array.cpp -------------------------------------------------------------------------------- /src/ti_kv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/src/ti_kv.cpp -------------------------------------------------------------------------------- /src/ti_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/src/ti_object.cpp -------------------------------------------------------------------------------- /test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/test.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/json_to_cpp/HEAD/vcpkg.json --------------------------------------------------------------------------------