1 | /* |
2 | * This file was generated by qdbusxml2cpp version 0.8 |
3 | * Command line was: qdbusxml2cpp -p service_p.h:service.cpp org.bluez.all.xml org.bluez.Service |
4 | * |
5 | * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd. |
6 | * |
7 | * This is an auto-generated file. |
8 | * Do not edit! All changes made to it will be lost. |
9 | */ |
10 | |
11 | #ifndef SERVICE_P_H |
12 | #define SERVICE_P_H |
13 | |
14 | #include <QtCore/QObject> |
15 | #include <QtCore/QByteArray> |
16 | #include <QtCore/QList> |
17 | #include <QtCore/QMap> |
18 | #include <QtCore/QString> |
19 | #include <QtCore/QStringList> |
20 | #include <QtCore/QVariant> |
21 | #include <QtDBus/QtDBus> |
22 | |
23 | /* |
24 | * Proxy class for interface org.bluez.Service |
25 | */ |
26 | class OrgBluezServiceInterface: public QDBusAbstractInterface |
27 | { |
28 | Q_OBJECT |
29 | public: |
30 | static inline const char *staticInterfaceName() |
31 | { return "org.bluez.Service" ; } |
32 | |
33 | public: |
34 | OrgBluezServiceInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
35 | |
36 | ~OrgBluezServiceInterface(); |
37 | |
38 | public Q_SLOTS: // METHODS |
39 | inline QDBusPendingReply<uint> AddRecord(const QString &in0) |
40 | { |
41 | QList<QVariant> argumentList; |
42 | argumentList << QVariant::fromValue(in0); |
43 | return asyncCallWithArgumentList(QStringLiteral("AddRecord" ), argumentList); |
44 | } |
45 | |
46 | inline QDBusPendingReply<> CancelAuthorization() |
47 | { |
48 | QList<QVariant> argumentList; |
49 | return asyncCallWithArgumentList(QStringLiteral("CancelAuthorization" ), argumentList); |
50 | } |
51 | |
52 | inline QDBusPendingReply<> RemoveRecord(uint in0) |
53 | { |
54 | QList<QVariant> argumentList; |
55 | argumentList << QVariant::fromValue(in0); |
56 | return asyncCallWithArgumentList(QStringLiteral("RemoveRecord" ), argumentList); |
57 | } |
58 | |
59 | inline QDBusPendingReply<> RequestAuthorization(const QString &in0, uint in1) |
60 | { |
61 | QList<QVariant> argumentList; |
62 | argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1); |
63 | return asyncCallWithArgumentList(QStringLiteral("RequestAuthorization" ), argumentList); |
64 | } |
65 | |
66 | inline QDBusPendingReply<> UpdateRecord(uint in0, const QString &in1) |
67 | { |
68 | QList<QVariant> argumentList; |
69 | argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1); |
70 | return asyncCallWithArgumentList(QStringLiteral("UpdateRecord" ), argumentList); |
71 | } |
72 | |
73 | Q_SIGNALS: // SIGNALS |
74 | }; |
75 | |
76 | namespace org { |
77 | namespace bluez { |
78 | typedef ::OrgBluezServiceInterface Service; |
79 | } |
80 | } |
81 | #endif |
82 | |