kdeconnect-kde/plugins/share/share_config.h
Alexander Lohnau c61fad5561 Do not make virtual methods of KCModule Q_SLOT
We do not need those methods to be marked as slots and the KCMUtils
classes like KPluginWidget also don't need it.
Meaning it just results in more moc code being generated.
2023-07-22 20:51:19 +00:00

32 lines
585 B
C++

/**
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#ifndef SHARE_CONFIG_H
#define SHARE_CONFIG_H
#include "kcmplugin/kdeconnectpluginkcm.h"
namespace Ui
{
class ShareConfigUi;
}
class ShareConfig : public KdeConnectPluginKcm
{
Q_OBJECT
public:
ShareConfig(QObject *parent, const QVariantList &);
~ShareConfig() override;
void save() override;
void load() override;
void defaults() override;
private:
Ui::ShareConfigUi *m_ui;
};
#endif