mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 13:34:44 -04:00
Fix read flag calculation on progress read updated from the server.
This commit is contained in:
23
YACReaderLibrary/server/controllers/comiccontroller.h
Normal file
23
YACReaderLibrary/server/controllers/comiccontroller.h
Normal file
@ -0,0 +1,23 @@
|
||||
#ifndef COMICCONTROLLER_H
|
||||
#define COMICCONTROLLER_H
|
||||
|
||||
#include "httprequest.h"
|
||||
#include "httpresponse.h"
|
||||
#include "httprequesthandler.h"
|
||||
|
||||
#include <QThread>
|
||||
class Comic;
|
||||
class QString;
|
||||
|
||||
class ComicController : public HttpRequestHandler {
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(ComicController);
|
||||
public:
|
||||
/** Constructor */
|
||||
ComicController();
|
||||
|
||||
/** Generates the response */
|
||||
void service(HttpRequest& request, HttpResponse& response);
|
||||
};
|
||||
|
||||
#endif // COMICCONTROLLER_H
|
Reference in New Issue
Block a user