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