├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── QtPropertySerializer.cpp ├── QtPropertySerializer.h ├── README.md └── test ├── CMakeLists.txt ├── test_QtPropertySerializer.cpp ├── test_QtPropertySerializer.h └── test_QtPropertySerializer.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/LICENSE -------------------------------------------------------------------------------- /QtPropertySerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/QtPropertySerializer.cpp -------------------------------------------------------------------------------- /QtPropertySerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/QtPropertySerializer.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/README.md -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/test_QtPropertySerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/test/test_QtPropertySerializer.cpp -------------------------------------------------------------------------------- /test/test_QtPropertySerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/test/test_QtPropertySerializer.h -------------------------------------------------------------------------------- /test/test_QtPropertySerializer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertySerializer/HEAD/test/test_QtPropertySerializer.pro --------------------------------------------------------------------------------