#ifndef COMICCONTROLLER_H #define COMICCONTROLLER_H #include "httprequest.h" #include "httpresponse.h" #include "httprequesthandler.h" #include class Comic; class QString; class ComicController : public stefanfrings::HttpRequestHandler { Q_OBJECT Q_DISABLE_COPY(ComicController); public: /** Constructor */ ComicController(); /** Generates the response */ void service(stefanfrings::HttpRequest &request, stefanfrings::HttpResponse &response) override; }; #endif // COMICCONTROLLER_H