├── .gitignore ├── CMake ├── BuildProperties.cmake └── CPM.cmake ├── CMakeLists.txt ├── LICENSE ├── QJsonModel.cpp ├── README.md ├── include ├── QJsonModel.hpp └── details │ └── QUtf8.hpp └── screen.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/.gitignore -------------------------------------------------------------------------------- /CMake/BuildProperties.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/CMake/BuildProperties.cmake -------------------------------------------------------------------------------- /CMake/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/CMake/CPM.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/LICENSE -------------------------------------------------------------------------------- /QJsonModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/QJsonModel.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/README.md -------------------------------------------------------------------------------- /include/QJsonModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/include/QJsonModel.hpp -------------------------------------------------------------------------------- /include/details/QUtf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/include/details/QUtf8.hpp -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dridk/QJsonModel/HEAD/screen.png --------------------------------------------------------------------------------