1 #ifndef UPDATECOMICCONTROLLER_H
2 #define UPDATECOMICCONTROLLER_H
3 
4 #include "httprequest.h"
5 #include "httpresponse.h"
6 #include "httprequesthandler.h"
7 
8 class UpdateComicController : public stefanfrings::HttpRequestHandler
9 {
10     Q_OBJECT
11     Q_DISABLE_COPY(UpdateComicController);
12 
13 public:
14     UpdateComicController();
15 
16     /** Generates the response */
17     void service(stefanfrings::HttpRequest &request, stefanfrings::HttpResponse &response) override;
18 };
19 
20 #endif // UPDATECOMICCONTROLLER_H
21