1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
* This file was generated by qdbusxml2cpp version 0.8
* Command line was: qdbusxml2cpp -a bluez_agent1adaptor -c BluezAgent1Adaptor org.bluez.Agent1.xml
*
* qdbusxml2cpp is Copyright (C) 2015 Digia Plc and/or its subsidiary(-ies).
*
* This is an auto-generated file.
* Do not edit! All changes made to it will be lost.
*/
#include "bluez_agent1adaptor.h"
#include <QtCore/QMetaObject>
#include <QtCore/QByteArray>
#include <QtCore/QList>
#include <QtCore/QMap>
#include <QtCore/QString>
#include <QtCore/QStringList>
#include <QtCore/QVariant>
/*
* Implementation of adaptor class BluezAgent1Adaptor
*/
BluezAgent1Adaptor::BluezAgent1Adaptor(QObject *parent)
: QDBusAbstractAdaptor(parent)
{
// constructor
setAutoRelaySignals(true);
}
BluezAgent1Adaptor::~BluezAgent1Adaptor()
{
// destructor
}
void BluezAgent1Adaptor::AuthorizeService(const QDBusObjectPath &device, const QString &uuid)
{
// handle method call org.bluez.Agent1.AuthorizeService
QMetaObject::invokeMethod(parent(), "AuthorizeService", Q_ARG(QDBusObjectPath, device), Q_ARG(QString, uuid));
}
void BluezAgent1Adaptor::Cancel()
{
// handle method call org.bluez.Agent1.Cancel
QMetaObject::invokeMethod(parent(), "Cancel");
}
void BluezAgent1Adaptor::DisplayPasskey(const QDBusObjectPath &device, uint passkey, ushort entered)
{
// handle method call org.bluez.Agent1.DisplayPasskey
QMetaObject::invokeMethod(parent(), "DisplayPasskey", Q_ARG(QDBusObjectPath, device), Q_ARG(uint, passkey), Q_ARG(ushort, entered));
}
void BluezAgent1Adaptor::DisplayPinCode(const QDBusObjectPath &device, const QString &pincode)
{
// handle method call org.bluez.Agent1.DisplayPinCode
QMetaObject::invokeMethod(parent(), "DisplayPinCode", Q_ARG(QDBusObjectPath, device), Q_ARG(QString, pincode));
}
void BluezAgent1Adaptor::Release()
{
// handle method call org.bluez.Agent1.Release
QMetaObject::invokeMethod(parent(), "Release");
}
void BluezAgent1Adaptor::RequestAuthorization(const QDBusObjectPath &device)
{
// handle method call org.bluez.Agent1.RequestAuthorization
QMetaObject::invokeMethod(parent(), "RequestAuthorization", Q_ARG(QDBusObjectPath, device));
}
void BluezAgent1Adaptor::RequestConfirmation(const QDBusObjectPath &device, uint passkey)
{
// handle method call org.bluez.Agent1.RequestConfirmation
QMetaObject::invokeMethod(parent(), "RequestConfirmation", Q_ARG(QDBusObjectPath, device), Q_ARG(uint, passkey));
}
uint BluezAgent1Adaptor::RequestPasskey(const QDBusObjectPath &device)
{
// handle method call org.bluez.Agent1.RequestPasskey
uint passkey;
QMetaObject::invokeMethod(parent(), "RequestPasskey", Q_RETURN_ARG(uint, passkey), Q_ARG(QDBusObjectPath, device));
return passkey;
}
QString BluezAgent1Adaptor::RequestPinCode(const QDBusObjectPath &device)
{
// handle method call org.bluez.Agent1.RequestPinCode
QString pincode;
QMetaObject::invokeMethod(parent(), "RequestPinCode", Q_RETURN_ARG(QString, pincode), Q_ARG(QDBusObjectPath, device));
return pincode;
}
|