2018-09-17 19:27:52 +02:00
|
|
|
#include "seriesplugin.h"
|
|
|
|
|
|
|
|
|
|
#include "seriesapplication.h"
|
|
|
|
|
|
|
|
|
|
SeriesPlugin::SeriesPlugin(QObject *parent) :
|
|
|
|
|
WebPlugin(parent)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SeriesPlugin::pluginName() const
|
|
|
|
|
{
|
|
|
|
|
return QStringLiteral("series");
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-22 07:24:19 +02:00
|
|
|
WebApplication *SeriesPlugin::createApplication(const QJsonObject &config, WebServer &webServer) const
|
2018-09-17 19:27:52 +02:00
|
|
|
{
|
2018-09-22 07:24:19 +02:00
|
|
|
return new SeriesApplication(config, webServer);
|
2018-09-17 19:27:52 +02:00
|
|
|
}
|