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