mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
21 lines
444 B
C++
21 lines
444 B
C++
#ifndef COVERCONTROLLER_V2_H
|
|
#define COVERCONTROLLER_V2_H
|
|
|
|
#include "httprequest.h"
|
|
#include "httpresponse.h"
|
|
#include "httprequesthandler.h"
|
|
|
|
class CoverControllerV2 : public HttpRequestHandler
|
|
{
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY(CoverControllerV2)
|
|
public:
|
|
/** Constructor */
|
|
CoverControllerV2();
|
|
|
|
/** Generates the response */
|
|
void service(HttpRequest &request, HttpResponse &response) override;
|
|
};
|
|
|
|
#endif // COVERCONTROLLER_H
|