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

21 lines
409 B
C++

#include "helloworldplugin.h"
#include "helloworldapplication.h"
HelloWorldPlugin::HelloWorldPlugin(QObject *parent) :
WebPlugin(parent)
{
}
QString HelloWorldPlugin::pluginName() const
{
return QStringLiteral("helloworld");
}
WebApplication *HelloWorldPlugin::createApplication(const QJsonObject &config, WebServer &webServer) const
{
return new HelloWorldApplication(config, webServer);
}