simplersble 1.0.1-dev25

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

#include <simpleble/Exceptions.h>
#include <simpleble/Types.h>

namespace SimpleBLE {

class DescriptorBase {
  public:
    DescriptorBase(const BluetoothUUID& uuid);
    virtual ~DescriptorBase() = default;

    BluetoothUUID uuid();

  protected:
    BluetoothUUID uuid_;
};

}  // namespace SimpleBLE