shift-shell/kcms/hotspot/hotspotsettings.cpp
2023-06-10 10:53:50 +02:00

24 lines
512 B
C++

/*
SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include <KLocalizedString>
#include <KPluginFactory>
#include <KQuickConfigModule>
class HotspotSettings : public KQuickConfigModule
{
Q_OBJECT
public:
HotspotSettings(QObject *parent, const KPluginMetaData &metaData)
: KQuickConfigModule(parent, metaData)
{
}
};
K_PLUGIN_CLASS_WITH_JSON(HotspotSettings, "kcm_mobile_hotspot.json")
#include "hotspotsettings.moc"