2021-03-01 20:03:25 +00:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
|
2017-09-14 19:03:56 +00:00
|
|
|
*
|
2021-03-01 20:03:25 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
*/
|
2017-09-14 19:03:56 +00:00
|
|
|
|
|
|
|
|
#ifndef PHONEPANEL_H
|
|
|
|
|
#define PHONEPANEL_H
|
|
|
|
|
|
|
|
|
|
#include <Plasma/Containment>
|
|
|
|
|
|
|
|
|
|
class PhonePanel : public Plasma::Containment
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2021-03-19 07:52:22 +00:00
|
|
|
|
2017-09-14 19:03:56 +00:00
|
|
|
public:
|
2022-04-24 11:44:41 +00:00
|
|
|
PhonePanel(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
|
2018-12-31 03:13:55 +00:00
|
|
|
~PhonePanel() override;
|
2017-09-14 19:03:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|