File indexing completed on 2024-04-14 14:19:08

0001 // SPDX-FileCopyrightText: 2021 Alexander Lohnau <alexander.lohnau@gmx.de>
0002 // SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0003 
0004 #include "kpluginfactory.h"
0005 
0006 class SimplePluginClass : public QObject
0007 {
0008     Q_OBJECT
0009 
0010 public:
0011     explicit SimplePluginClass(QObject * /*parent*/, const QVariantList & /*args*/)
0012     {
0013     }
0014 };
0015 
0016 K_PLUGIN_CLASS_WITH_JSON(SimplePluginClass, "jsonplugin.json")
0017 
0018 #include "kpluginclass.moc"