mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
- Adapt server code for QtWebapp namespace 'stefanfrings' - Implement custom modifications needed by v1 controller via template engine - Unify iphone and ipad templates
26 lines
524 B
C++
26 lines
524 B
C++
#ifndef COMICCONTROLLER_H
|
|
#define COMICCONTROLLER_H
|
|
|
|
#include "httprequest.h"
|
|
#include "httpresponse.h"
|
|
#include "httprequesthandler.h"
|
|
|
|
#include <QThread>
|
|
class Comic;
|
|
class QString;
|
|
|
|
class ComicController : public stefanfrings::HttpRequestHandler
|
|
{
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY(ComicController);
|
|
|
|
public:
|
|
/** Constructor */
|
|
ComicController();
|
|
|
|
/** Generates the response */
|
|
void service(stefanfrings::HttpRequest &request, stefanfrings::HttpResponse &response) override;
|
|
};
|
|
|
|
#endif // COMICCONTROLLER_H
|