File indexing completed on 2024-04-21 15:06:12

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