/* * This file was generated by qdbusxml2cpp version 0.8 * Command line was: * * qdbusxml2cpp is Copyright (C) 2016 The Qt Company Ltd. * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #ifndef WIMAXDEVICEINTERFACE_H #define WIMAXDEVICEINTERFACE_H #include "generictypes.h" #include #include #include #include #include #include #include /* * Proxy class for interface org.freedesktop.NetworkManager.Device.WiMax */ class OrgFreedesktopNetworkManagerDeviceWiMaxInterface : public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() #ifdef NMQT_STATIC { return "org.kde.fakenetwork.Device.WiMax"; } #else { return "org.freedesktop.NetworkManager.Device.WiMax"; } #endif public: OrgFreedesktopNetworkManagerDeviceWiMaxInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); ~OrgFreedesktopNetworkManagerDeviceWiMaxInterface() override; Q_PROPERTY(QDBusObjectPath ActiveNsp READ activeNsp) inline QDBusObjectPath activeNsp() const { return qvariant_cast(property("ActiveNsp")); } Q_PROPERTY(QString Bsid READ bsid) inline QString bsid() const { return qvariant_cast(property("Bsid")); } Q_PROPERTY(uint CenterFrequency READ centerFrequency) inline uint centerFrequency() const { return qvariant_cast(property("CenterFrequency")); } Q_PROPERTY(int Cinr READ cinr) inline int cinr() const { return qvariant_cast(property("Cinr")); } Q_PROPERTY(QString HwAddress READ hwAddress) inline QString hwAddress() const { return qvariant_cast(property("HwAddress")); } Q_PROPERTY(QList Nsps READ nsps) inline QList nsps() const { return qvariant_cast>(property("Nsps")); } Q_PROPERTY(int Rssi READ rssi) inline int rssi() const { return qvariant_cast(property("Rssi")); } Q_PROPERTY(int TxPower READ txPower) inline int txPower() const { return qvariant_cast(property("TxPower")); } public Q_SLOTS: // METHODS inline QDBusPendingReply> GetNspList() { QList argumentList; return asyncCallWithArgumentList(QStringLiteral("GetNspList"), argumentList); } Q_SIGNALS: // SIGNALS void NspAdded(const QDBusObjectPath &nsp); void NspRemoved(const QDBusObjectPath &nsp); void PropertiesChanged(const QVariantMap &properties); }; #endif