mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
19 lines
436 B
C++
19 lines
436 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)
|
|
: KQuickConfigModule(parent, metaData)
|
|
{
|
|
}
|
|
|
|
#include "hotspotsettings.moc"
|