File indexing completed on 2024-05-12 03:54:48

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     // Add a default arg to make sure we do not get an ambiguity compiler error
0013     PluginWithoutMetaData(const QObject *, const QVariantList &args = {})
0014         : QObject()
0015     {
0016         Q_UNUSED(args)
0017     };
0018 };
0019 
0020 K_PLUGIN_CLASS(PluginWithoutMetaData)
0021 
0022 #include "pluginwithoutmetadata.moc"