diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2015-02-20 23:35:31 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2015-02-20 23:35:31 +0100 |
commit | 9c095ce3c2165ae9fb976b007ba5c14602d06a0b (patch) | |
tree | eff8f921df89d24a46e63c137dbdf5c5888644a6 /ble/Bluetooth.h | |
parent | e44813dddbf5ba063d29ae1e40862e7a7cbb6f43 (diff) | |
download | ble-toys-9c095ce3c2165ae9fb976b007ba5c14602d06a0b.tar.gz ble-toys-9c095ce3c2165ae9fb976b007ba5c14602d06a0b.tar.bz2 ble-toys-9c095ce3c2165ae9fb976b007ba5c14602d06a0b.tar.xz ble-toys-9c095ce3c2165ae9fb976b007ba5c14602d06a0b.zip |
wip
Diffstat (limited to 'ble/Bluetooth.h')
-rw-r--r-- | ble/Bluetooth.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ble/Bluetooth.h b/ble/Bluetooth.h index e47ff3e..e7b163b 100644 --- a/ble/Bluetooth.h +++ b/ble/Bluetooth.h @@ -149,6 +149,15 @@ protected: virtual ~BluetoothAdapter(); }; +/** + * RAII support. + */ +class BluetoothSystem { +public: + BluetoothSystem(); + ~BluetoothSystem(); +}; + enum AttPduType { ERROR = 0x00, INVALID_HANDLE = 0x01, @@ -200,6 +209,8 @@ BluetoothAdapter &getAdapter(int hciDevice); void shutdown(); +boost::uuids::uuid makeUuid(const boost::uuids::uuid base, uint8_t a, uint8_t b); + } } |