File indexing completed on 2024-04-21 03:59:57

0001 /*
0002  * This file was generated by qdbusxml2cpp version 0.8
0003  * Command line was:
0004  *
0005  * qdbusxml2cpp is Copyright (C) 2016 The Qt Company Ltd.
0006  *
0007  * This is an auto-generated file.
0008  * Do not edit! All changes made to it will be lost.
0009  */
0010 
0011 #ifndef VETHINTERFACE_H
0012 #define VETHINTERFACE_H
0013 
0014 #include "generictypes.h"
0015 
0016 #include <QDBusAbstractInterface>
0017 #include <QDBusObjectPath>
0018 #include <QObject>
0019 #include <QString>
0020 #include <QVariant>
0021 
0022 /*
0023  * Proxy class for interface org.freedesktop.NetworkManager.Device.Veth
0024  */
0025 class OrgFreedesktopNetworkManagerDeviceVethInterface : public QDBusAbstractInterface
0026 {
0027     Q_OBJECT
0028 public:
0029     static inline const char *staticInterfaceName()
0030 #ifdef NMQT_STATIC
0031     {
0032         return "org.kde.fakenetwork.Device.Veth";
0033     }
0034 #else
0035     {
0036         return "org.freedesktop.NetworkManager.Device.Veth";
0037     }
0038 #endif
0039 
0040 public:
0041     OrgFreedesktopNetworkManagerDeviceVethInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr);
0042 
0043     ~OrgFreedesktopNetworkManagerDeviceVethInterface() override;
0044 
0045     Q_PROPERTY(QDBusObjectPath Peer READ peer)
0046     inline QDBusObjectPath peer() const
0047     {
0048         return qvariant_cast<QDBusObjectPath>(property("Peer"));
0049     }
0050 
0051 public Q_SLOTS: // METHODS
0052 Q_SIGNALS: // SIGNALS
0053     void PropertiesChanged(const QVariantMap &properties);
0054 };
0055 
0056 #endif