1 | /* |
2 | SPDX-FileCopyrightText: 2014 Jan Grulich <jgrulich@redhat.com> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
5 | */ |
6 | |
7 | #ifndef NETWORKMANAGERQT_WIMAXNSP_P_H |
8 | #define NETWORKMANAGERQT_WIMAXNSP_P_H |
9 | |
10 | #include "dbus/wimaxnspinterface.h" |
11 | #include "wimaxnsp.h" |
12 | |
13 | namespace NetworkManager |
14 | { |
15 | class WimaxNspPrivate : public QObject |
16 | { |
17 | Q_OBJECT |
18 | public: |
19 | WimaxNspPrivate(const QString &path, WimaxNsp *q); |
20 | |
21 | OrgFreedesktopNetworkManagerWiMaxNspInterface iface; |
22 | QString uni; |
23 | WimaxNsp::NetworkType networkType; |
24 | QString name; |
25 | uint signalQuality; |
26 | |
27 | Q_DECLARE_PUBLIC(WimaxNsp) |
28 | WimaxNsp *q_ptr; |
29 | private Q_SLOTS: |
30 | void propertiesChanged(const QVariantMap &properties); |
31 | }; |
32 | } |
33 | |
34 | #endif // NETWORKMANAGERQT_WIMAXNSP_P_H |
35 | |