/* * This file was generated by qdbusxml2cpp version 0.8 * Command line was: qdbusxml2cpp -p obex_objectpush1_bluez5_p.h:obex_objectpush1_bluez5.cpp org.bluez.obex.ObjectPush1.xml * * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd. * * This is an auto-generated file. * Do not edit! All changes made to it will be lost. */ #ifndef OBEX_OBJECTPUSH1_BLUEZ5_P_H #define OBEX_OBJECTPUSH1_BLUEZ5_P_H #include #include #include #include #include #include #include #include /* * Proxy class for interface org.bluez.obex.ObjectPush1 */ class OrgBluezObexObjectPush1Interface: public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() { return "org.bluez.obex.ObjectPush1"; } public: OrgBluezObexObjectPush1Interface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); ~OrgBluezObexObjectPush1Interface(); public Q_SLOTS: // METHODS inline QDBusPendingReply ExchangeBusinessCards(const QString &clientfile, const QString &targetfile) { QList argumentList; argumentList << QVariant::fromValue(clientfile) << QVariant::fromValue(targetfile); return asyncCallWithArgumentList(QStringLiteral("ExchangeBusinessCards"), argumentList); } inline QDBusReply ExchangeBusinessCards(const QString &clientfile, const QString &targetfile, QVariantMap &properties) { QList argumentList; argumentList << QVariant::fromValue(clientfile) << QVariant::fromValue(targetfile); QDBusMessage reply = callWithArgumentList(QDBus::Block, QStringLiteral("ExchangeBusinessCards"), argumentList); if (reply.type() == QDBusMessage::ReplyMessage && reply.arguments().count() == 2) { properties = qdbus_cast(reply.arguments().at(1)); } return reply; } inline QDBusPendingReply PullBusinessCard(const QString &targetfile) { QList argumentList; argumentList << QVariant::fromValue(targetfile); return asyncCallWithArgumentList(QStringLiteral("PullBusinessCard"), argumentList); } inline QDBusReply PullBusinessCard(const QString &targetfile, QVariantMap &properties) { QList argumentList; argumentList << QVariant::fromValue(targetfile); QDBusMessage reply = callWithArgumentList(QDBus::Block, QStringLiteral("PullBusinessCard"), argumentList); if (reply.type() == QDBusMessage::ReplyMessage && reply.arguments().count() == 2) { properties = qdbus_cast(reply.arguments().at(1)); } return reply; } inline QDBusPendingReply SendFile(const QString &sourcefile) { QList argumentList; argumentList << QVariant::fromValue(sourcefile); return asyncCallWithArgumentList(QStringLiteral("SendFile"), argumentList); } inline QDBusReply SendFile(const QString &sourcefile, QVariantMap &properties) { QList argumentList; argumentList << QVariant::fromValue(sourcefile); QDBusMessage reply = callWithArgumentList(QDBus::Block, QStringLiteral("SendFile"), argumentList); if (reply.type() == QDBusMessage::ReplyMessage && reply.arguments().count() == 2) { properties = qdbus_cast(reply.arguments().at(1)); } return reply; } Q_SIGNALS: // SIGNALS }; namespace org { namespace bluez { namespace obex { typedef ::OrgBluezObexObjectPush1Interface ObjectPush1; } } } #endif