shift-shell/kcms/hotspot/hotspotsettings.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
509 B
C++
Raw Normal View History

/*
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)
2023-03-18 17:53:52 +00:00
: KQuickConfigModule(parent, metaData, args)
{
}
HotspotSettings::~HotspotSettings()
{
}
#include "hotspotsettings.moc"