File indexing completed on 2024-05-05 16:05:43

0001 /*
0002     SPDX-FileCopyrightText: 2020 David Faure <faure@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #include "kcmtest.h"
0008 #include <KPluginFactory>
0009 
0010 KCMTest::KCMTest(QObject *parent, const QVariantList &args)
0011     : QObject(parent)
0012 {
0013     Q_UNUSED(args)
0014 }
0015 
0016 K_PLUGIN_FACTORY_WITH_JSON(kcmtestfactory, "kcmtest.json", registerPlugin<KCMTest>();)
0017 
0018 #include "kcmtest.moc"
0019 
0020 #include "moc_kcmtest.cpp"