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

0001 /*
0002  * SPDX-FileCopyrightText: 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 "profilemanager.h"
0008 
0009 #include <QDBusMessage>
0010 
0011 ProfileManager::ProfileManager(QObject *parent)
0012     : QDBusAbstractAdaptor(parent)
0013 {
0014     setName(QStringLiteral("org.bluez.ProfileManager1"));
0015     setPath(QDBusObjectPath(QStringLiteral("/org/bluez")));
0016 }
0017 
0018 void ProfileManager::RegisterProfile(const QDBusObjectPath &path, const QString &uuid, const QVariantMap &options, const QDBusMessage &msg)
0019 {
0020     Q_UNUSED(path)
0021     Q_UNUSED(uuid)
0022     Q_UNUSED(options)
0023     Q_UNUSED(msg)
0024 }
0025 
0026 void ProfileManager::UnregisterProfile(const QDBusObjectPath &path, const QDBusMessage &msg)
0027 {
0028     Q_UNUSED(path)
0029     Q_UNUSED(msg)
0030 }
0031 
0032 #include "moc_profilemanager.cpp"