Warning, file /frameworks/kcoreaddons/autotests/staticpluginwithoutmetadata.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 StaticPluginWithoutMetaData : public QObject 0007 { 0008 Q_OBJECT 0009 0010 public: 0011 explicit StaticPluginWithoutMetaData(QObject *, const QVariantList &) 0012 { 0013 } 0014 }; 0015 0016 K_PLUGIN_CLASS(StaticPluginWithoutMetaData) 0017 0018 #include "staticpluginwithoutmetadata.moc"