mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 05:24:57 -04:00
Add a new server controller for opening comics from reading lists
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
#ifndef COMICCONTROLLERINREADINGLISTV2_H
|
||||
#define COMICCONTROLLERINREADINGLISTV2_H
|
||||
|
||||
#include "httprequest.h"
|
||||
#include "httpresponse.h"
|
||||
#include "httprequesthandler.h"
|
||||
|
||||
class ComicControllerInReadingListV2 : public stefanfrings::HttpRequestHandler
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(ComicControllerInReadingListV2)
|
||||
public:
|
||||
ComicControllerInReadingListV2();
|
||||
|
||||
void service(stefanfrings::HttpRequest &request, stefanfrings::HttpResponse &response) override;
|
||||
};
|
||||
|
||||
#endif // COMICCONTROLLERINREADINGLISTV2_H
|
Reference in New Issue
Block a user