| 1 | /* |
| 2 | * This file was generated by qdbusxml2cpp version 0.8 |
| 3 | * Source file was org.bluez.LEAdvertisement1.xml |
| 4 | * |
| 5 | * qdbusxml2cpp is Copyright (C) The Qt Company Ltd. and other contributors. |
| 6 | * |
| 7 | * This is an auto-generated file. |
| 8 | * This file may have been hand-edited. Look for HAND-EDIT comments |
| 9 | * before re-generating it. |
| 10 | */ |
| 11 | |
| 12 | #ifndef LEADVERTISEMENT1ADAPTOR_P_H |
| 13 | #define LEADVERTISEMENT1ADAPTOR_P_H |
| 14 | |
| 15 | // |
| 16 | // W A R N I N G |
| 17 | // ------------- |
| 18 | // |
| 19 | // This file is not part of the Qt API. It exists purely as an |
| 20 | // implementation detail. This header file may change from version to |
| 21 | // version without notice, or even be removed. |
| 22 | // |
| 23 | // We mean it. |
| 24 | // |
| 25 | |
| 26 | #include <QtCore/QObject> |
| 27 | #include <QtDBus/QtDBus> |
| 28 | #include "bluez5_helper_p.h" |
| 29 | #include <QtCore/qcontainerfwd.h> |
| 30 | |
| 31 | namespace QtBluetoothPrivate { |
| 32 | |
| 33 | /* |
| 34 | * Adaptor class for interface org.bluez.LEAdvertisement1 |
| 35 | */ |
| 36 | class OrgBluezLEAdvertisement1Adaptor: public QDBusAbstractAdaptor |
| 37 | { |
| 38 | Q_OBJECT |
| 39 | Q_CLASSINFO("D-Bus Interface" , "org.bluez.LEAdvertisement1" ) |
| 40 | Q_CLASSINFO("D-Bus Introspection" , "" |
| 41 | " <interface name=\"org.bluez.LEAdvertisement1\">\n" |
| 42 | " <method name=\"Release\">\n" |
| 43 | " <annotation value=\"true\" name=\"org.freedesktop.DBus.Method.NoReply\"/>\n" |
| 44 | " </method>\n" |
| 45 | " <property access=\"readwrite\" type=\"s\" name=\"Type\"/>\n" |
| 46 | " <property access=\"readwrite\" type=\"as\" name=\"ServiceUUIDs\"/>\n" |
| 47 | " <property access=\"readwrite\" type=\"a{qv}\" name=\"ManufacturerData\">\n" |
| 48 | " <annotation value=\"ManufacturerDataList\" name=\"org.qtproject.QtDBus.QtTypeName\"/>\n" |
| 49 | " </property>\n" |
| 50 | " <property access=\"readwrite\" type=\"b\" name=\"Discoverable\"/>\n" |
| 51 | " <property access=\"readwrite\" type=\"as\" name=\"Includes\"/>\n" |
| 52 | " <property access=\"readwrite\" type=\"s\" name=\"LocalName\"/>\n" |
| 53 | " <property access=\"readwrite\" type=\"u\" name=\"MinInterval\"/>\n" |
| 54 | " <property access=\"readwrite\" type=\"u\" name=\"MaxInterval\"/>\n" |
| 55 | " </interface>\n" |
| 56 | "" ) |
| 57 | public: |
| 58 | OrgBluezLEAdvertisement1Adaptor(QObject *parent); |
| 59 | ~OrgBluezLEAdvertisement1Adaptor() override; |
| 60 | |
| 61 | public: // PROPERTIES |
| 62 | Q_PROPERTY(bool Discoverable READ discoverable WRITE setDiscoverable) |
| 63 | bool discoverable() const; |
| 64 | void setDiscoverable(bool value); |
| 65 | |
| 66 | Q_PROPERTY(QStringList Includes READ includes WRITE setIncludes) |
| 67 | QStringList includes() const; |
| 68 | void setIncludes(const QStringList &value); |
| 69 | |
| 70 | Q_PROPERTY(QString LocalName READ localName WRITE setLocalName) |
| 71 | QString localName() const; |
| 72 | void setLocalName(const QString &value); |
| 73 | |
| 74 | Q_PROPERTY(ManufacturerDataList ManufacturerData READ manufacturerData WRITE setManufacturerData) |
| 75 | ManufacturerDataList manufacturerData() const; |
| 76 | void setManufacturerData(ManufacturerDataList value); |
| 77 | |
| 78 | Q_PROPERTY(uint MaxInterval READ maxInterval WRITE setMaxInterval) |
| 79 | uint maxInterval() const; |
| 80 | void setMaxInterval(uint value); |
| 81 | |
| 82 | Q_PROPERTY(uint MinInterval READ minInterval WRITE setMinInterval) |
| 83 | uint minInterval() const; |
| 84 | void setMinInterval(uint value); |
| 85 | |
| 86 | Q_PROPERTY(QStringList ServiceUUIDs READ serviceUUIDs WRITE setServiceUUIDs) |
| 87 | QStringList serviceUUIDs() const; |
| 88 | void setServiceUUIDs(const QStringList &value); |
| 89 | |
| 90 | Q_PROPERTY(QString Type READ type WRITE setType) |
| 91 | QString type() const; |
| 92 | void setType(const QString &value); |
| 93 | |
| 94 | public Q_SLOTS: // METHODS |
| 95 | Q_NOREPLY void Release(); |
| 96 | Q_SIGNALS: // SIGNALS |
| 97 | }; |
| 98 | |
| 99 | } // end of namespace QtBluetoothPrivate |
| 100 | |
| 101 | #endif |
| 102 | |