Warning, file /frameworks/kcoreaddons/autotests/statickpluginclass.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
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 StaticSimplePluginClass : public QObject 0007 { 0008 Q_OBJECT 0009 0010 public: 0011 explicit StaticSimplePluginClass(QObject *, const QVariantList &) 0012 { 0013 } 0014 }; 0015 0016 K_PLUGIN_CLASS_WITH_JSON(StaticSimplePluginClass, "jsonplugin.json") 0017 0018 #include "statickpluginclass.moc"