File indexing completed on 2024-05-05 16:06:47

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 OtherStaticSimplePluginClass : public QObject
0007 {
0008     Q_OBJECT
0009 
0010 public:
0011     explicit OtherStaticSimplePluginClass(QObject *, const QVariantList &)
0012     {
0013     }
0014 };
0015 
0016 K_PLUGIN_CLASS_WITH_JSON(OtherStaticSimplePluginClass, "jsonplugin.json")
0017 
0018 #include "statickpluginclass_2.moc"