| 1 | /* |
| 2 | * This file was generated by qdbusxml2cpp version 0.8 |
| 3 | * Source file was org.bluez.GattService1.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 GATTSERVICE1ADAPTOR_P_H |
| 13 | #define GATTSERVICE1ADAPTOR_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.GattService1 |
| 35 | */ |
| 36 | class OrgBluezGattService1Adaptor: public QDBusAbstractAdaptor |
| 37 | { |
| 38 | Q_OBJECT |
| 39 | Q_CLASSINFO("D-Bus Interface" , "org.bluez.GattService1" ) |
| 40 | Q_CLASSINFO("D-Bus Introspection" , "" |
| 41 | " <interface name=\"org.bluez.GattService1\">\n" |
| 42 | " <property access=\"read\" type=\"s\" name=\"UUID\"/>\n" |
| 43 | " <property access=\"read\" type=\"o\" name=\"Device\"/>\n" |
| 44 | " <property access=\"read\" type=\"b\" name=\"Primary\"/>\n" |
| 45 | " <property access=\"read\" type=\"ao\" name=\"Includes\"/>\n" |
| 46 | " </interface>\n" |
| 47 | "" ) |
| 48 | public: |
| 49 | OrgBluezGattService1Adaptor(QObject *parent); |
| 50 | ~OrgBluezGattService1Adaptor() override; |
| 51 | |
| 52 | public: // PROPERTIES |
| 53 | Q_PROPERTY(QDBusObjectPath Device READ device) |
| 54 | QDBusObjectPath device() const; |
| 55 | |
| 56 | Q_PROPERTY(QList<QDBusObjectPath> Includes READ includes) |
| 57 | QList<QDBusObjectPath> includes() const; |
| 58 | |
| 59 | Q_PROPERTY(bool Primary READ primary) |
| 60 | bool primary() const; |
| 61 | |
| 62 | Q_PROPERTY(QString UUID READ uUID) |
| 63 | QString uUID() const; |
| 64 | |
| 65 | public Q_SLOTS: // METHODS |
| 66 | Q_SIGNALS: // SIGNALS |
| 67 | }; |
| 68 | |
| 69 | } // end of namespace QtBluetoothPrivate |
| 70 | |
| 71 | #endif |
| 72 | |