| 1 | /* |
| 2 | * This file was generated by qdbusxml2cpp version 0.8 |
| 3 | * Command line was: qdbusxml2cpp -v org.neard.Agent.xml -p agent_p -v |
| 4 | * |
| 5 | * qdbusxml2cpp is Copyright (C) 2015 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 AGENT_P_H_1410442485 |
| 12 | #define AGENT_P_H_1410442485 |
| 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.neard.HandoverAgent |
| 25 | */ |
| 26 | class OrgNeardHandoverAgentInterface: public QDBusAbstractInterface |
| 27 | { |
| 28 | Q_OBJECT |
| 29 | public: |
| 30 | static inline const char *staticInterfaceName() |
| 31 | { return "org.neard.HandoverAgent" ; } |
| 32 | |
| 33 | public: |
| 34 | OrgNeardHandoverAgentInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); |
| 35 | |
| 36 | ~OrgNeardHandoverAgentInterface(); |
| 37 | |
| 38 | public Q_SLOTS: // METHODS |
| 39 | inline QDBusPendingReply<> PushOOB(const QVariantMap &values) |
| 40 | { |
| 41 | QList<QVariant> argumentList; |
| 42 | argumentList << QVariant::fromValue(value: values); |
| 43 | return asyncCallWithArgumentList(QStringLiteral("PushOOB" ), args: argumentList); |
| 44 | } |
| 45 | |
| 46 | inline QDBusPendingReply<> Release() |
| 47 | { |
| 48 | QList<QVariant> argumentList; |
| 49 | return asyncCallWithArgumentList(QStringLiteral("Release" ), args: argumentList); |
| 50 | } |
| 51 | |
| 52 | inline QDBusPendingReply<QVariantMap> RequestOOB(const QVariantMap &values) |
| 53 | { |
| 54 | QList<QVariant> argumentList; |
| 55 | argumentList << QVariant::fromValue(value: values); |
| 56 | return asyncCallWithArgumentList(QStringLiteral("RequestOOB" ), args: argumentList); |
| 57 | } |
| 58 | |
| 59 | Q_SIGNALS: // SIGNALS |
| 60 | }; |
| 61 | |
| 62 | /* |
| 63 | * Proxy class for interface org.neard.NDEFAgent |
| 64 | */ |
| 65 | class OrgNeardNDEFAgentInterface: public QDBusAbstractInterface |
| 66 | { |
| 67 | Q_OBJECT |
| 68 | public: |
| 69 | static inline const char *staticInterfaceName() |
| 70 | { return "org.neard.NDEFAgent" ; } |
| 71 | |
| 72 | public: |
| 73 | OrgNeardNDEFAgentInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); |
| 74 | |
| 75 | ~OrgNeardNDEFAgentInterface(); |
| 76 | |
| 77 | public Q_SLOTS: // METHODS |
| 78 | inline QDBusPendingReply<> GetNDEF(const QVariantMap &values) |
| 79 | { |
| 80 | QList<QVariant> argumentList; |
| 81 | argumentList << QVariant::fromValue(value: values); |
| 82 | return asyncCallWithArgumentList(QStringLiteral("GetNDEF" ), args: argumentList); |
| 83 | } |
| 84 | |
| 85 | inline QDBusPendingReply<> Release() |
| 86 | { |
| 87 | QList<QVariant> argumentList; |
| 88 | return asyncCallWithArgumentList(QStringLiteral("Release" ), args: argumentList); |
| 89 | } |
| 90 | |
| 91 | Q_SIGNALS: // SIGNALS |
| 92 | }; |
| 93 | |
| 94 | namespace org { |
| 95 | namespace neard { |
| 96 | typedef ::OrgNeardHandoverAgentInterface HandoverAgent; |
| 97 | typedef ::OrgNeardNDEFAgentInterface NDEFAgent; |
| 98 | } |
| 99 | } |
| 100 | #endif |
| 101 | |