File indexing completed on 2024-05-05 16:04:26

0001 /*
0002  * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer <mincequi@web.de>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005  */
0006 
0007 #ifndef LESERVER_H
0008 #define LESERVER_H
0009 
0010 #include <QObject>
0011 
0012 #include "types.h"
0013 
0014 namespace BluezQt
0015 {
0016 class PendingCall;
0017 }
0018 
0019 class LeServer : public QObject
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     explicit LeServer(BluezQt::Manager *manager, QObject *parent = nullptr);
0025 
0026 private:
0027     void onCallFinished(BluezQt::PendingCall *call);
0028 
0029     BluezQt::Manager *m_manager;
0030 };
0031 
0032 #endif