File indexing completed on 2024-04-21 03:51:52

0001 /*
0002  * SPDX-FileCopyrightText: 2014-2015 David Rosca <nowrep@gmail.com>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005  */
0006 
0007 #include "obexclient.h"
0008 
0009 #include <QDBusMessage>
0010 
0011 ObexClient::ObexClient(QObject *parent)
0012     : QDBusAbstractAdaptor(parent)
0013 {
0014     setName(QStringLiteral("org.bluez.obex.Client1"));
0015     setPath(QDBusObjectPath(QStringLiteral("/org/bluez/obex")));
0016 }
0017 
0018 void ObexClient::runAction(const QString &actionName, const QVariantMap &properties)
0019 {
0020     Q_UNUSED(actionName)
0021     Q_UNUSED(properties)
0022 }
0023 
0024 void ObexClient::CreateSession(const QString &destination, const QVariantMap &args, const QDBusMessage &msg)
0025 {
0026     Q_UNUSED(destination)
0027     Q_UNUSED(args)
0028     Q_UNUSED(msg)
0029 }
0030 
0031 void ObexClient::RemoveSession(const QDBusObjectPath &session, const QDBusMessage &msg)
0032 {
0033     Q_UNUSED(session)
0034     Q_UNUSED(msg)
0035 }
0036 
0037 #include "moc_obexclient.cpp"