├── LICENSE ├── QtNetworkService.pro ├── README.md ├── sample ├── Downloader │ ├── Downloader.cpp │ ├── Downloader.h │ ├── Downloader.pro │ ├── app.ico │ └── main.cpp └── main.cpp └── src ├── HttpClient.h └── QtNetworkService.pri /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/LICENSE -------------------------------------------------------------------------------- /QtNetworkService.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/QtNetworkService.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/README.md -------------------------------------------------------------------------------- /sample/Downloader/Downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/sample/Downloader/Downloader.cpp -------------------------------------------------------------------------------- /sample/Downloader/Downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/sample/Downloader/Downloader.h -------------------------------------------------------------------------------- /sample/Downloader/Downloader.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/sample/Downloader/Downloader.pro -------------------------------------------------------------------------------- /sample/Downloader/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/sample/Downloader/app.ico -------------------------------------------------------------------------------- /sample/Downloader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/sample/Downloader/main.cpp -------------------------------------------------------------------------------- /sample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/sample/main.cpp -------------------------------------------------------------------------------- /src/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/src/HttpClient.h -------------------------------------------------------------------------------- /src/QtNetworkService.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtNetworkService/HEAD/src/QtNetworkService.pri --------------------------------------------------------------------------------