File indexing completed on 2024-05-05 04:50:12

0001 /*
0002     SPDX-FileCopyrightText: 2012 Eike Hein <hein@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #ifndef DRAGONPLAYER_MPRIS2_H
0008 #define DRAGONPLAYER_MPRIS2_H
0009 
0010 #include <QObject>
0011 #include <QVariantMap>
0012 
0013 class Mpris2 : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     explicit Mpris2(QObject *parent);
0019     ~Mpris2() override;
0020 
0021     static void signalPropertiesChange(const QObject *adaptor, const QVariantMap &properties);
0022 };
0023 
0024 #endif