mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
21 lines
447 B
C++
21 lines
447 B
C++
#ifndef UPDATECOMICCONTROLLER_H
|
|
#define UPDATECOMICCONTROLLER_H
|
|
|
|
#include "httprequest.h"
|
|
#include "httpresponse.h"
|
|
#include "httprequesthandler.h"
|
|
|
|
class UpdateComicController : public HttpRequestHandler
|
|
{
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY(UpdateComicController);
|
|
|
|
public:
|
|
UpdateComicController();
|
|
|
|
/** Generates the response */
|
|
void service(HttpRequest &request, HttpResponse &response) override;
|
|
};
|
|
|
|
#endif // UPDATECOMICCONTROLLER_H
|