File indexing completed on 2024-04-28 15:20:12

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