/* * This file was generated by qdbusxml2cpp version 0.8 * Command line was: qdbusxml2cpp -p service_p.h:service.cpp org.bluez.all.xml org.bluez.Service * * 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 SERVICE_P_H #define SERVICE_P_H #include #include #include #include #include #include #include #include /* * Proxy class for interface org.bluez.Service */ class OrgBluezServiceInterface: public QDBusAbstractInterface { Q_OBJECT public: static inline const char *staticInterfaceName() { return "org.bluez.Service"; } public: OrgBluezServiceInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr); ~OrgBluezServiceInterface(); public Q_SLOTS: // METHODS inline QDBusPendingReply AddRecord(const QString &in0) { QList argumentList; argumentList << QVariant::fromValue(in0); return asyncCallWithArgumentList(QStringLiteral("AddRecord"), argumentList); } inline QDBusPendingReply<> CancelAuthorization() { QList argumentList; return asyncCallWithArgumentList(QStringLiteral("CancelAuthorization"), argumentList); } inline QDBusPendingReply<> RemoveRecord(uint in0) { QList argumentList; argumentList << QVariant::fromValue(in0); return asyncCallWithArgumentList(QStringLiteral("RemoveRecord"), argumentList); } inline QDBusPendingReply<> RequestAuthorization(const QString &in0, uint in1) { QList argumentList; argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1); return asyncCallWithArgumentList(QStringLiteral("RequestAuthorization"), argumentList); } inline QDBusPendingReply<> UpdateRecord(uint in0, const QString &in1) { QList argumentList; argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1); return asyncCallWithArgumentList(QStringLiteral("UpdateRecord"), argumentList); } Q_SIGNALS: // SIGNALS }; namespace org { namespace bluez { typedef ::OrgBluezServiceInterface Service; } } #endif