mirror of
https://github.com/YACReader/yacreader
synced 2025-07-17 20:44:32 -04:00
Update server code integration for QtWebApp 1.7.11
- Adapt server code for QtWebapp namespace 'stefanfrings' - Implement custom modifications needed by v1 controller via template engine - Unify iphone and ipad templates
This commit is contained in:
@ -5,17 +5,17 @@
|
||||
#include "httpresponse.h"
|
||||
#include "httprequesthandler.h"
|
||||
|
||||
class ReadingListInfoControllerV2 : public HttpRequestHandler
|
||||
class ReadingListInfoControllerV2 : public stefanfrings::HttpRequestHandler
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(ReadingListInfoControllerV2)
|
||||
public:
|
||||
ReadingListInfoControllerV2();
|
||||
|
||||
void service(HttpRequest &request, HttpResponse &response) override;
|
||||
void service(stefanfrings::HttpRequest &request, stefanfrings::HttpResponse &response) override;
|
||||
|
||||
private:
|
||||
void serviceComics(const int &library, const qulonglong &readingListId, HttpResponse &response);
|
||||
void serviceComics(const int &library, const qulonglong &readingListId, stefanfrings::HttpResponse &response);
|
||||
};
|
||||
|
||||
#endif // READINGLISTINFOCONTROLLER_V2_H
|
||||
|
Reference in New Issue
Block a user