b54e739753
By having it as a simple member variable, we do not need to take care of deleting it manually
24 lines
537 B
C++
24 lines
537 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
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "kcmplugin/kdeconnectpluginkcm.h"
|
|
#include "ui_share_config.h"
|
|
|
|
class ShareConfig : public KdeConnectPluginKcm
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ShareConfig(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
|
|
|
|
void save() override;
|
|
void load() override;
|
|
void defaults() override;
|
|
|
|
private:
|
|
Ui::ShareConfigUi m_ui;
|
|
};
|