1 | /* |
2 | * This file was generated by qdbusxml2cpp version 0.8 |
3 | * Command line was: qdbusxml2cpp -a gattservice1adaptor_p.h:gattservice1adaptor.cpp -c OrgBluezGattService1Adaptor -i bluez5_helper_p.h org.bluez.GattService1.xml |
4 | * |
5 | * qdbusxml2cpp is Copyright (C) 2022 The Qt Company Ltd. |
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 | /* |
32 | * Adaptor class for interface org.bluez.GattService1 |
33 | */ |
34 | class OrgBluezGattService1Adaptor: public QDBusAbstractAdaptor |
35 | { |
36 | Q_OBJECT |
37 | Q_CLASSINFO("D-Bus Interface" , "org.bluez.GattService1" ) |
38 | Q_CLASSINFO("D-Bus Introspection" , "" |
39 | " <interface name=\"org.bluez.GattService1\">\n" |
40 | " <property access=\"read\" type=\"s\" name=\"UUID\"/>\n" |
41 | " <property access=\"read\" type=\"o\" name=\"Device\"/>\n" |
42 | " <property access=\"read\" type=\"b\" name=\"Primary\"/>\n" |
43 | " <property access=\"read\" type=\"ao\" name=\"Includes\"/>\n" |
44 | " </interface>\n" |
45 | "" ) |
46 | public: |
47 | OrgBluezGattService1Adaptor(QObject *parent); |
48 | virtual ~OrgBluezGattService1Adaptor(); |
49 | |
50 | public: // PROPERTIES |
51 | Q_PROPERTY(QDBusObjectPath Device READ device) |
52 | QDBusObjectPath device() const; |
53 | |
54 | Q_PROPERTY(QList<QDBusObjectPath> Includes READ includes) |
55 | QList<QDBusObjectPath> includes() const; |
56 | |
57 | Q_PROPERTY(bool Primary READ primary) |
58 | bool primary() const; |
59 | |
60 | Q_PROPERTY(QString UUID READ uUID) |
61 | QString uUID() const; |
62 | |
63 | public Q_SLOTS: // METHODS |
64 | Q_SIGNALS: // SIGNALS |
65 | }; |
66 | |
67 | #endif |
68 | |