Files
DbWebserver-helloworldplugin/helloworldapplication.h
2018-09-22 07:23:29 +02:00

23 lines
412 B
C++

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