diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2015-06-21 13:26:55 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2015-06-21 13:26:55 +0200 |
commit | 47b736139f242a8fd2e5c6513b0c2e0b31110d77 (patch) | |
tree | 94aeca3afb607a2b60cca2a146c8532d431f2b1f /ble | |
parent | f4afc04ee7a085a89ad84ba89344bb50ca9e6e04 (diff) | |
download | ble-toys-47b736139f242a8fd2e5c6513b0c2e0b31110d77.tar.gz ble-toys-47b736139f242a8fd2e5c6513b0c2e0b31110d77.tar.bz2 ble-toys-47b736139f242a8fd2e5c6513b0c2e0b31110d77.tar.xz ble-toys-47b736139f242a8fd2e5c6513b0c2e0b31110d77.zip |
SoilMoisture:
o Adding getName().
sm-get-value:
o More cleanup.
Diffstat (limited to 'ble')
-rw-r--r-- | ble/LinuxBluetooth.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ble/LinuxBluetooth.cpp b/ble/LinuxBluetooth.cpp index 6e3c9da..c96d145 100644 --- a/ble/LinuxBluetooth.cpp +++ b/ble/LinuxBluetooth.cpp @@ -68,6 +68,10 @@ public: ~LinuxBluetoothGatt(); + LinuxBluetoothGatt(const LinuxBluetoothGatt&) = delete; + + LinuxBluetoothGatt& operator=(const LinuxBluetoothGatt&) = delete; + bool isConnected() const override; void discoverServices() override; |