yacreader/YACReaderLibrary/server/controllers/v1/comicdownloadinfocontroller.h
2019-06-01 16:04:48 +02:00

22 lines
507 B
C++

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