File indexing completed on 2024-04-28 15:33:07

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 VLANDEVICEINTERFACE_H
0012 #define VLANDEVICEINTERFACE_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.Vlan
0024  */
0025 class OrgFreedesktopNetworkManagerDeviceVlanInterface : 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.Vlan";
0033     }
0034 #else
0035     {
0036         return "org.freedesktop.NetworkManager.Device.Vlan";
0037     }
0038 #endif
0039 
0040 public:
0041     OrgFreedesktopNetworkManagerDeviceVlanInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr);
0042 
0043     ~OrgFreedesktopNetworkManagerDeviceVlanInterface() override;
0044 
0045     Q_PROPERTY(bool Carrier READ carrier)
0046     inline bool carrier() const
0047     {
0048         return qvariant_cast<bool>(property("Carrier"));
0049     }
0050 
0051     Q_PROPERTY(QString HwAddress READ hwAddress)
0052     inline QString hwAddress() const
0053     {
0054         return qvariant_cast<QString>(property("HwAddress"));
0055     }
0056 
0057     Q_PROPERTY(QDBusObjectPath Parent READ parent)
0058     inline QDBusObjectPath parent() const
0059     {
0060         return qvariant_cast<QDBusObjectPath>(property("Parent"));
0061     }
0062 
0063     Q_PROPERTY(uint VlanId READ vlanId)
0064     inline uint vlanId() const
0065     {
0066         return qvariant_cast<uint>(property("VlanId"));
0067     }
0068 
0069 public Q_SLOTS: // METHODS
0070 Q_SIGNALS: // SIGNALS
0071     void PropertiesChanged(const QVariantMap &properties);
0072 };
0073 
0074 #endif