This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/libguh/bluetooth/bluetoothlowenergymanager.h
2019-04-02 01:02:45 +02:00

31 lines
539 B
C++

#ifndef BLUETOOTHLOWENERGYMANAGER_H
#define BLUETOOTHLOWENERGYMANAGER_H
#include <QObject>
#include <QBluetoothLocalDevice>
#include "hardwareresource.h"
#include "bluetoothscanner.h"
class BluetoothLowEnergyManager : public HardwareResource
{
Q_OBJECT
friend class HardwareManager;
public:
private:
explicit BluetoothLowEnergyManager(QObject *parent = nullptr);
QList<BluetoothScanner *> m_bluetoothScanners;
signals:
public slots:
bool enable();
bool disable();
};
#endif // BLUETOOTHLOWENERGYMANAGER_H