├── .gitignore ├── CMakeLists.txt ├── README.md ├── allinone.h ├── lgpl-2.1.txt ├── lgpl.txt ├── qassign.cpp ├── qassign.h ├── qdatetimefield.cpp ├── qdatetimefield.h ├── qdoublefield.cpp ├── qdoublefield.h ├── qf.cpp ├── qf.h ├── qfield.cpp ├── qfield.h ├── qfield_p.h ├── qforeignkey.cpp ├── qforeignkey.h ├── qforeignkey_p.h ├── qintfield.cpp ├── qintfield.h ├── qmodel.cpp ├── qmodel.h ├── qqueryset.cpp ├── qqueryset.h ├── qstringfield.cpp ├── qstringfield.h ├── qtormdatabase.cpp ├── qtormdatabase.h ├── qwhere.cpp └── qwhere.h /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build/ 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/README.md -------------------------------------------------------------------------------- /allinone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/allinone.h -------------------------------------------------------------------------------- /lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/lgpl-2.1.txt -------------------------------------------------------------------------------- /lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/lgpl.txt -------------------------------------------------------------------------------- /qassign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qassign.cpp -------------------------------------------------------------------------------- /qassign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qassign.h -------------------------------------------------------------------------------- /qdatetimefield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qdatetimefield.cpp -------------------------------------------------------------------------------- /qdatetimefield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qdatetimefield.h -------------------------------------------------------------------------------- /qdoublefield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qdoublefield.cpp -------------------------------------------------------------------------------- /qdoublefield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qdoublefield.h -------------------------------------------------------------------------------- /qf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qf.cpp -------------------------------------------------------------------------------- /qf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qf.h -------------------------------------------------------------------------------- /qfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qfield.cpp -------------------------------------------------------------------------------- /qfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qfield.h -------------------------------------------------------------------------------- /qfield_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qfield_p.h -------------------------------------------------------------------------------- /qforeignkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qforeignkey.cpp -------------------------------------------------------------------------------- /qforeignkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qforeignkey.h -------------------------------------------------------------------------------- /qforeignkey_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qforeignkey_p.h -------------------------------------------------------------------------------- /qintfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qintfield.cpp -------------------------------------------------------------------------------- /qintfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qintfield.h -------------------------------------------------------------------------------- /qmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qmodel.cpp -------------------------------------------------------------------------------- /qmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qmodel.h -------------------------------------------------------------------------------- /qqueryset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qqueryset.cpp -------------------------------------------------------------------------------- /qqueryset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qqueryset.h -------------------------------------------------------------------------------- /qstringfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qstringfield.cpp -------------------------------------------------------------------------------- /qstringfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qstringfield.h -------------------------------------------------------------------------------- /qtormdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qtormdatabase.cpp -------------------------------------------------------------------------------- /qtormdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qtormdatabase.h -------------------------------------------------------------------------------- /qwhere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qwhere.cpp -------------------------------------------------------------------------------- /qwhere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steckdenis/qtorm/HEAD/qwhere.h --------------------------------------------------------------------------------