mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
20 lines
516 B
C++
20 lines
516 B
C++
#ifndef COMICDOWNLOADINFOCONTROLLER_H
|
|
#define COMICDOWNLOADINFOCONTROLLER_H
|
|
|
|
#include "httprequest.h"
|
|
#include "httpresponse.h"
|
|
#include "httprequesthandler.h"
|
|
|
|
class ComicDownloadInfoController : public HttpRequestHandler {
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY(ComicDownloadInfoController);
|
|
public:
|
|
/** Constructor **/
|
|
ComicDownloadInfoController();
|
|
|
|
/** Generates the response */
|
|
void service(HttpRequest& request, HttpResponse& response);
|
|
};
|
|
|
|
#endif // COMICDOWNLOADINFOCONTROLLER_H
|