mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-27 14:33:08 +00:00
24 lines
517 B
C++
24 lines
517 B
C++
|
|
/*
|
||
|
|
SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
|
||
|
|
|
||
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "hotspotsettings.h"
|
||
|
|
|
||
|
|
#include <KLocalizedString>
|
||
|
|
#include <KPluginFactory>
|
||
|
|
|
||
|
|
K_PLUGIN_CLASS_WITH_JSON(HotspotSettings, "kcm_mobile_hotspot.json")
|
||
|
|
|
||
|
|
HotspotSettings::HotspotSettings(QObject *parent, const KPluginMetaData &metaData, const QVariantList &args)
|
||
|
|
: KQuickAddons::ConfigModule(parent, metaData, args)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
HotspotSettings::~HotspotSettings()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
#include "hotspotsettings.moc"
|