| 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 DNSMANAGERINTERFACE_H |
| 12 | #define DNSMANAGERINTERFACE_H |
| 13 | |
| 14 | #include "generictypes.h" |
| 15 | |
| 16 | #include <QDBusAbstractInterface> |
| 17 | #include <QObject> |
| 18 | #include <QString> |
| 19 | |
| 20 | /* |
| 21 | * Proxy class for interface org.freedesktop.NetworkManager.DnsManager |
| 22 | */ |
| 23 | class OrgFreedesktopNetworkManagerDnsManagerInterface : public QDBusAbstractInterface |
| 24 | { |
| 25 | Q_OBJECT |
| 26 | public: |
| 27 | static inline const char *staticInterfaceName() |
| 28 | #ifdef NMQT_STATIC |
| 29 | { |
| 30 | return "org.kde.fakenetwork.DnsManager" ; |
| 31 | } |
| 32 | #else |
| 33 | { |
| 34 | return "org.freedesktop.NetworkManager.DnsManager" ; |
| 35 | } |
| 36 | #endif |
| 37 | |
| 38 | public: |
| 39 | OrgFreedesktopNetworkManagerDnsManagerInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
| 40 | |
| 41 | ~OrgFreedesktopNetworkManagerDnsManagerInterface() override; |
| 42 | |
| 43 | Q_PROPERTY(NMVariantMapList Configuration READ configuration) |
| 44 | inline NMVariantMapList configuration() const |
| 45 | { |
| 46 | return qvariant_cast<NMVariantMapList>(v: property(name: "Configuration" )); |
| 47 | } |
| 48 | |
| 49 | Q_PROPERTY(QString Mode READ mode) |
| 50 | inline QString mode() const |
| 51 | { |
| 52 | return qvariant_cast<QString>(v: property(name: "Mode" )); |
| 53 | } |
| 54 | |
| 55 | Q_PROPERTY(QString RcManager READ rcManager) |
| 56 | inline QString rcManager() const |
| 57 | { |
| 58 | return qvariant_cast<QString>(v: property(name: "RcManager" )); |
| 59 | } |
| 60 | |
| 61 | public Q_SLOTS: // METHODS |
| 62 | Q_SIGNALS: // SIGNALS |
| 63 | }; |
| 64 | |
| 65 | #endif |
| 66 | |