File indexing completed on 2024-04-14 03:57:22

0001 /*
0002     SPDX-FileCopyrightText: 2013-2015 Jan Grulich <jgrulich@redhat.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef MODEMMANAGERQT_INTERFACE_P_H
0008 #define MODEMMANAGERQT_INTERFACE_P_H
0009 
0010 #include "interface.h"
0011 
0012 namespace ModemManager
0013 {
0014 class InterfacePrivate : public QObject
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit InterfacePrivate(const QString &path, Interface *q);
0019     ~InterfacePrivate() override;
0020     QString uni;
0021 
0022     Q_DECLARE_PUBLIC(Interface)
0023     Interface *q_ptr;
0024 public Q_SLOTS:
0025     virtual void onPropertiesChanged(const QString &interface, const QVariantMap &properties, const QStringList &invalidatedProps);
0026 };
0027 
0028 } // namespace ModemManager
0029 
0030 #endif