1 | /* |
---|---|
2 | * This file was generated by qdbusxml2cpp version 0.8 |
3 | * Command line was: qdbusxml2cpp -p profilemanager1_p.h:profilemanager1.cpp org.bluez.ProfileManager1.xml |
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 PROFILEMANAGER1_P_H |
12 | #define PROFILEMANAGER1_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.ProfileManager1 |
25 | */ |
26 | class OrgBluezProfileManager1Interface: public QDBusAbstractInterface |
27 | { |
28 | Q_OBJECT |
29 | public: |
30 | static inline const char *staticInterfaceName() |
31 | { return "org.bluez.ProfileManager1"; } |
32 | |
33 | public: |
34 | OrgBluezProfileManager1Interface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); |
35 | |
36 | ~OrgBluezProfileManager1Interface(); |
37 | |
38 | public Q_SLOTS: // METHODS |
39 | inline QDBusPendingReply<> RegisterProfile(const QDBusObjectPath &profile, const QString &UUID, const QVariantMap &options) |
40 | { |
41 | QList<QVariant> argumentList; |
42 | argumentList << QVariant::fromValue(profile) << QVariant::fromValue(UUID) << QVariant::fromValue(options); |
43 | return asyncCallWithArgumentList(QStringLiteral("RegisterProfile"), argumentList); |
44 | } |
45 | |
46 | inline QDBusPendingReply<> UnregisterProfile(const QDBusObjectPath &profile) |
47 | { |
48 | QList<QVariant> argumentList; |
49 | argumentList << QVariant::fromValue(profile); |
50 | return asyncCallWithArgumentList(QStringLiteral("UnregisterProfile"), argumentList); |
51 | } |
52 | |
53 | Q_SIGNALS: // SIGNALS |
54 | }; |
55 | |
56 | namespace org { |
57 | namespace bluez { |
58 | typedef ::OrgBluezProfileManager1Interface ProfileManager1; |
59 | } |
60 | } |
61 | #endif |
62 |