| 1 | /* |
| 2 | * This file was generated by qdbusxml2cpp version 0.8 |
| 3 | * Source file was org.freedesktop.NetworkManager.WifiP2PPeer.xml |
| 4 | * |
| 5 | * qdbusxml2cpp is Copyright (C) The Qt Company Ltd. and other contributors. |
| 6 | * |
| 7 | * This is an auto-generated file. |
| 8 | * Do not edit! All changes made to it will be lost. |
| 9 | */ |
| 10 | |
| 11 | #ifndef WIFIP2PPEERINTERFACE_H |
| 12 | #define WIFIP2PPEERINTERFACE_H |
| 13 | |
| 14 | #include "generictypes.h" |
| 15 | #include <QtCore/QByteArray> |
| 16 | #include <QtCore/QList> |
| 17 | #include <QtCore/QMap> |
| 18 | #include <QtCore/QObject> |
| 19 | #include <QtCore/QString> |
| 20 | #include <QtCore/QStringList> |
| 21 | #include <QtCore/QVariant> |
| 22 | #include <QtDBus/QtDBus> |
| 23 | |
| 24 | /* |
| 25 | * Proxy class for interface org.freedesktop.NetworkManager.WifiP2PPeer |
| 26 | */ |
| 27 | class OrgFreedesktopNetworkManagerWifiP2PPeerInterface : public QDBusAbstractInterface |
| 28 | { |
| 29 | Q_OBJECT |
| 30 | public: |
| 31 | static inline const char *staticInterfaceName() |
| 32 | #ifdef NMQT_STATIC |
| 33 | { |
| 34 | return "org.kde.network.WifiP2PPeer" ; |
| 35 | } |
| 36 | #else |
| 37 | { |
| 38 | return "org.freedesktop.NetworkManager.WifiP2PPeer" ; |
| 39 | } |
| 40 | #endif |
| 41 | public: |
| 42 | OrgFreedesktopNetworkManagerWifiP2PPeerInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
| 43 | |
| 44 | ~OrgFreedesktopNetworkManagerWifiP2PPeerInterface(); |
| 45 | |
| 46 | Q_PROPERTY(uint Flags READ flags) |
| 47 | inline uint flags() const |
| 48 | { |
| 49 | return qvariant_cast<uint>(v: property(name: "Flags" )); |
| 50 | } |
| 51 | |
| 52 | Q_PROPERTY(QString HwAddress READ hwAddress) |
| 53 | inline QString hwAddress() const |
| 54 | { |
| 55 | return qvariant_cast<QString>(v: property(name: "HwAddress" )); |
| 56 | } |
| 57 | |
| 58 | Q_PROPERTY(int LastSeen READ lastSeen) |
| 59 | inline int lastSeen() const |
| 60 | { |
| 61 | return qvariant_cast<int>(v: property(name: "LastSeen" )); |
| 62 | } |
| 63 | |
| 64 | Q_PROPERTY(QString Manufacturer READ manufacturer) |
| 65 | inline QString manufacturer() const |
| 66 | { |
| 67 | return qvariant_cast<QString>(v: property(name: "Manufacturer" )); |
| 68 | } |
| 69 | |
| 70 | Q_PROPERTY(QString Model READ model) |
| 71 | inline QString model() const |
| 72 | { |
| 73 | return qvariant_cast<QString>(v: property(name: "Model" )); |
| 74 | } |
| 75 | |
| 76 | Q_PROPERTY(QString ModelNumber READ modelNumber) |
| 77 | inline QString modelNumber() const |
| 78 | { |
| 79 | return qvariant_cast<QString>(v: property(name: "ModelNumber" )); |
| 80 | } |
| 81 | |
| 82 | Q_PROPERTY(QString Name READ name) |
| 83 | inline QString name() const |
| 84 | { |
| 85 | return qvariant_cast<QString>(v: property(name: "Name" )); |
| 86 | } |
| 87 | |
| 88 | Q_PROPERTY(QString Serial READ serial) |
| 89 | inline QString serial() const |
| 90 | { |
| 91 | return qvariant_cast<QString>(v: property(name: "Serial" )); |
| 92 | } |
| 93 | |
| 94 | Q_PROPERTY(uchar Strength READ strength) |
| 95 | inline uchar strength() const |
| 96 | { |
| 97 | return qvariant_cast<uchar>(v: property(name: "Strength" )); |
| 98 | } |
| 99 | |
| 100 | Q_PROPERTY(QByteArray WfdIEs READ wfdIEs) |
| 101 | inline QByteArray wfdIEs() const |
| 102 | { |
| 103 | return qvariant_cast<QByteArray>(v: property(name: "WfdIEs" )); |
| 104 | } |
| 105 | |
| 106 | public Q_SLOTS: // METHODS |
| 107 | Q_SIGNALS: // SIGNALS |
| 108 | void PropertiesChanged(const QVariantMap &properties); |
| 109 | }; |
| 110 | |
| 111 | #endif |
| 112 | |