Files
DbWebserver-proxyplugin/proxyapplication.h
2018-09-22 07:23:57 +02:00

23 lines
402 B
C++

#pragma once
#include "webapplication.h"
class QJsonObject;
class WebServer;
class ProxyApplication : public WebApplication
{
Q_OBJECT
public:
ProxyApplication(const QJsonObject &config, WebServer &webServer);
void start() Q_DECL_OVERRIDE;
void handleRequest(HttpClientConnection *connection, const HttpRequest &request) Q_DECL_OVERRIDE;
private:
WebServer &m_webServer;
};