├── ClientREST ├── CMakeLists.txt ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui ├── README.md └── ServerREST ├── CMakeLists.txt └── src ├── CMakeLists.txt ├── apiv1.cpp ├── apiv1.h ├── serverrest.cpp └── serverrest.h /ClientREST/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ClientREST/CMakeLists.txt -------------------------------------------------------------------------------- /ClientREST/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ClientREST/main.cpp -------------------------------------------------------------------------------- /ClientREST/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ClientREST/mainwindow.cpp -------------------------------------------------------------------------------- /ClientREST/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ClientREST/mainwindow.h -------------------------------------------------------------------------------- /ClientREST/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ClientREST/mainwindow.ui -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/README.md -------------------------------------------------------------------------------- /ServerREST/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ServerREST/CMakeLists.txt -------------------------------------------------------------------------------- /ServerREST/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ServerREST/src/CMakeLists.txt -------------------------------------------------------------------------------- /ServerREST/src/apiv1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ServerREST/src/apiv1.cpp -------------------------------------------------------------------------------- /ServerREST/src/apiv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ServerREST/src/apiv1.h -------------------------------------------------------------------------------- /ServerREST/src/serverrest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ServerREST/src/serverrest.cpp -------------------------------------------------------------------------------- /ServerREST/src/serverrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceciletti/example-qt-cutelyst-rest/HEAD/ServerREST/src/serverrest.h --------------------------------------------------------------------------------