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