File indexing completed on 2025-03-16 12:58:27
0001 /* 0002 SPDX-FileCopyrightText: 2014 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 NETWORKMANAGERQT_WIMAXNSP_P_H 0008 #define NETWORKMANAGERQT_WIMAXNSP_P_H 0009 0010 #include "dbus/wimaxnspinterface.h" 0011 #include "wimaxnsp.h" 0012 0013 namespace NetworkManager 0014 { 0015 class WimaxNspPrivate : public QObject 0016 { 0017 Q_OBJECT 0018 public: 0019 WimaxNspPrivate(const QString &path, WimaxNsp *q); 0020 0021 OrgFreedesktopNetworkManagerWiMaxNspInterface iface; 0022 QString uni; 0023 WimaxNsp::NetworkType networkType; 0024 QString name; 0025 uint signalQuality; 0026 0027 Q_DECLARE_PUBLIC(WimaxNsp) 0028 WimaxNsp *q_ptr; 0029 private Q_SLOTS: 0030 void propertiesChanged(const QVariantMap &properties); 0031 }; 0032 } 0033 0034 #endif // NETWORKMANAGERQT_WIMAXNSP_P_H