Warning, file /frameworks/kcmutils/autotests/fakekcm/fakekcm.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     This file is part of the KDE Frameworks
0003     SPDX-FileCopyrightText: 2022 Nicolas Fella <nicolas.fella@gmx.de>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006 */
0007 
0008 #include <KCModule>
0009 #include <KPluginFactory>
0010 #include <KPluginMetaData>
0011 
0012 class FakeKcm : public KCModule
0013 {
0014 public:
0015     FakeKcm(QObject *obj, const QVariantList &)
0016         : KCModule()
0017     {
0018     }
0019 };
0020 
0021 K_PLUGIN_CLASS_WITH_JSON(FakeKcm, "fakekcm.json")
0022 
0023 #include "fakekcm.moc"