| 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 VETHINTERFACE_H |
| 12 | #define VETHINTERFACE_H |
| 13 | |
| 14 | #include "generictypes.h" |
| 15 | |
| 16 | #include <QDBusAbstractInterface> |
| 17 | #include <QDBusObjectPath> |
| 18 | #include <QObject> |
| 19 | #include <QString> |
| 20 | #include <QVariant> |
| 21 | |
| 22 | /* |
| 23 | * Proxy class for interface org.freedesktop.NetworkManager.Device.Veth |
| 24 | */ |
| 25 | class OrgFreedesktopNetworkManagerDeviceVethInterface : public QDBusAbstractInterface |
| 26 | { |
| 27 | Q_OBJECT |
| 28 | public: |
| 29 | static inline const char *staticInterfaceName() |
| 30 | #ifdef NMQT_STATIC |
| 31 | { |
| 32 | return "org.kde.fakenetwork.Device.Veth" ; |
| 33 | } |
| 34 | #else |
| 35 | { |
| 36 | return "org.freedesktop.NetworkManager.Device.Veth" ; |
| 37 | } |
| 38 | #endif |
| 39 | |
| 40 | public: |
| 41 | OrgFreedesktopNetworkManagerDeviceVethInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
| 42 | |
| 43 | ~OrgFreedesktopNetworkManagerDeviceVethInterface() override; |
| 44 | |
| 45 | Q_PROPERTY(QDBusObjectPath Peer READ peer) |
| 46 | inline QDBusObjectPath peer() const |
| 47 | { |
| 48 | return qvariant_cast<QDBusObjectPath>(v: property(name: "Peer" )); |
| 49 | } |
| 50 | |
| 51 | public Q_SLOTS: // METHODS |
| 52 | Q_SIGNALS: // SIGNALS |
| 53 | void PropertiesChanged(const QVariantMap &properties); |
| 54 | }; |
| 55 | |
| 56 | #endif |
| 57 | |