// SPDX-FileCopyrightText: 2021 Alexander Lohnau // SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL #include "kpluginfactory.h" class StaticSimplePluginClass : public QObject { Q_OBJECT public: explicit StaticSimplePluginClass(QObject *, const QVariantList &) { } }; K_PLUGIN_CLASS_WITH_JSON(StaticSimplePluginClass, "jsonplugin.json") #include "statickpluginclass.moc"