mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
21 lines
362 B
C++
21 lines
362 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef PHONEPANEL_H
|
|
#define PHONEPANEL_H
|
|
|
|
#include <Plasma/Containment>
|
|
|
|
class PhonePanel : public Plasma::Containment
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PhonePanel(QObject *parent, const QVariantList &args);
|
|
~PhonePanel() override;
|
|
};
|
|
|
|
#endif
|