1 | /* |
2 | * This file was generated by qdbusxml2cpp version 0.8 |
3 | * Command line was: |
4 | * |
5 | * qdbusxml2cpp is Copyright (C) 2016 The Qt Company Ltd. |
6 | * |
7 | * This is an auto-generated file. |
8 | * Do not edit! All changes made to it will be lost. |
9 | */ |
10 | |
11 | #ifndef WIMAXNSPINTERFACE_H |
12 | #define WIMAXNSPINTERFACE_H |
13 | |
14 | #include "generictypes.h" |
15 | |
16 | #include <QDBusAbstractInterface> |
17 | #include <QObject> |
18 | #include <QString> |
19 | #include <QVariant> |
20 | |
21 | /* |
22 | * Proxy class for interface org.freedesktop.NetworkManager.WiMax.Nsp |
23 | */ |
24 | class OrgFreedesktopNetworkManagerWiMaxNspInterface : public QDBusAbstractInterface |
25 | { |
26 | Q_OBJECT |
27 | public: |
28 | static inline const char *staticInterfaceName() |
29 | #ifdef NMQT_STATIC |
30 | { |
31 | return "org.kde.fakenetwork.Settings.WiMax.Nsp" ; |
32 | } |
33 | #else |
34 | { |
35 | return "org.freedesktop.NetworkManager.WiMax.Nsp" ; |
36 | } |
37 | #endif |
38 | |
39 | public: |
40 | OrgFreedesktopNetworkManagerWiMaxNspInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
41 | |
42 | ~OrgFreedesktopNetworkManagerWiMaxNspInterface() override; |
43 | |
44 | Q_PROPERTY(QString Name READ name) |
45 | inline QString name() const |
46 | { |
47 | return qvariant_cast<QString>(v: property(name: "Name" )); |
48 | } |
49 | |
50 | Q_PROPERTY(uint NetworkType READ networkType) |
51 | inline uint networkType() const |
52 | { |
53 | return qvariant_cast<uint>(v: property(name: "NetworkType" )); |
54 | } |
55 | |
56 | Q_PROPERTY(uint SignalQuality READ signalQuality) |
57 | inline uint signalQuality() const |
58 | { |
59 | return qvariant_cast<uint>(v: property(name: "SignalQuality" )); |
60 | } |
61 | |
62 | public Q_SLOTS: // METHODS |
63 | Q_SIGNALS: // SIGNALS |
64 | void PropertiesChanged(const QVariantMap &properties); |
65 | }; |
66 | |
67 | #endif |
68 | |