simplersble 0.14.1-dev55

The all-in-one Bluetooth library that makes it easy to add wireless connectivity to your projects.
Documentation
#pragma once

#include "../common/BackendBase.h"
#include "../common/BackendUtils.h"

namespace SimpleBLE {

class BackendWinRT : public BackendSingleton<BackendWinRT> {
  public:
    BackendWinRT(buildToken);
    virtual ~BackendWinRT() = default;

    virtual std::vector<std::shared_ptr<AdapterBase>> adapters() override;
    virtual bool bluetooth_enabled() override;
    virtual std::string identifier() const noexcept override;
    virtual bool is_active() override { return true; }
};

}  // namespace SimpleBLE