added sync back reading progress for remote reading

added covers to remote folders (it could cause performance issues)
added read next/previous to remote reading
This commit is contained in:
Luis Ángel San Martín
2014-07-30 18:28:01 +02:00
parent 093b2b0cb1
commit d584fc2879
13 changed files with 120 additions and 8 deletions

View File

@ -0,0 +1,22 @@
#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);
};
#endif // UPDATECOMICCONTROLLER_H