summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/bluez/gattservice1adaptor_p.h
blob: b9bd85a7e5e5d5cd3c72142a848771b65593e846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
 * This file was generated by qdbusxml2cpp version 0.8
 * Command line was: qdbusxml2cpp -a gattservice1adaptor_p.h:gattservice1adaptor.cpp -c OrgBluezGattService1Adaptor -i bluez5_helper_p.h org.bluez.GattService1.xml
 *
 * qdbusxml2cpp is Copyright (C) 2022 The Qt Company Ltd.
 *
 * This is an auto-generated file.
 * This file may have been hand-edited. Look for HAND-EDIT comments
 * before re-generating it.
 */

#ifndef GATTSERVICE1ADAPTOR_P_H
#define GATTSERVICE1ADAPTOR_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

#include <QtCore/QObject>
#include <QtDBus/QtDBus>
#include "bluez5_helper_p.h"
#include <QtCore/qcontainerfwd.h>

/*
 * Adaptor class for interface org.bluez.GattService1
 */
class OrgBluezGattService1Adaptor: public QDBusAbstractAdaptor
{
    Q_OBJECT
    Q_CLASSINFO("D-Bus Interface", "org.bluez.GattService1")
    Q_CLASSINFO("D-Bus Introspection", ""
"  <interface name=\"org.bluez.GattService1\">\n"
"    <property access=\"read\" type=\"s\" name=\"UUID\"/>\n"
"    <property access=\"read\" type=\"o\" name=\"Device\"/>\n"
"    <property access=\"read\" type=\"b\" name=\"Primary\"/>\n"
"    <property access=\"read\" type=\"ao\" name=\"Includes\"/>\n"
"  </interface>\n"
        "")
public:
    OrgBluezGattService1Adaptor(QObject *parent);
    virtual ~OrgBluezGattService1Adaptor();

public: // PROPERTIES
    Q_PROPERTY(QDBusObjectPath Device READ device)
    QDBusObjectPath device() const;

    Q_PROPERTY(QList<QDBusObjectPath> Includes READ includes)
    QList<QDBusObjectPath> includes() const;

    Q_PROPERTY(bool Primary READ primary)
    bool primary() const;

    Q_PROPERTY(QString UUID READ uUID)
    QString uUID() const;

public Q_SLOTS: // METHODS
Q_SIGNALS: // SIGNALS
};

#endif