File indexing completed on 2024-04-14 15:39:56

0001 /*
0002     SPDX-FileCopyrightText: 2011 Lamarque Souza <lamarque@kde.org>
0003     SPDX-FileCopyrightText: 2013 Lukas Tinkl <ltinkl@redhat.com>
0004     SPDX-FileCopyrightText: 2013-2014 Jan Grulich <jgrulich@redhat.com>
0005     SPDX-FileCopyrightText: 2015 David Rosca <nowrep@gmail.com>
0006 
0007     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0008 */
0009 
0010 #ifndef PLASMA_NM_BLUETOOTH_MONITOR_H
0011 #define PLASMA_NM_BLUETOOTH_MONITOR_H
0012 #include "mobileconnectionwizard.h"
0013 #include <ModemManagerQt/Manager>
0014 
0015 #include <QObject>
0016 
0017 class BluetoothMonitor : public QObject
0018 {
0019     Q_OBJECT
0020 public:
0021     explicit BluetoothMonitor(QObject *parent);
0022     ~BluetoothMonitor() override;
0023 
0024     bool bluetoothConnectionExists(const QString &bdAddr, const QString &service);
0025     void addBluetoothConnection(const QString &bdAddr, const QString &service, const QString &connectionName);
0026 };
0027 #endif