File indexing completed on 2024-04-28 16:52:26

0001 /*
0002  *   SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
0003  *
0004  *   SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef PHONEPANEL_H
0008 #define PHONEPANEL_H
0009 
0010 #include <Plasma/Containment>
0011 
0012 class PhonePanel : public Plasma::Containment
0013 {
0014     Q_OBJECT
0015 
0016 public:
0017     PhonePanel(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
0018     ~PhonePanel() override;
0019 };
0020 
0021 #endif