diff options
author | Sven Gothel <[email protected]> | 2022-04-11 12:38:24 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-04-11 12:38:24 +0200 |
commit | cbf903ff90321f2c010676f5beafe28afe686066 (patch) | |
tree | ec8b5b65e5307c03a7733b374c375557172d53f6 /src/direct_bt | |
parent | 677a572f9591ade9a18ecf0f0d940a703ffe439f (diff) |
Cleanup Gatt numbers: Merge GattTypes.hpp into GattNumbers.hpp, remove redundant and unrelated BTGattDesc::Type
Diffstat (limited to 'src/direct_bt')
-rw-r--r-- | src/direct_bt/BTDevice.cpp | 2 | ||||
-rw-r--r-- | src/direct_bt/BTGattChar.cpp | 1 | ||||
-rw-r--r-- | src/direct_bt/BTGattHandler.cpp | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/src/direct_bt/BTDevice.cpp b/src/direct_bt/BTDevice.cpp index 672e2df0..9bf55de5 100644 --- a/src/direct_bt/BTDevice.cpp +++ b/src/direct_bt/BTDevice.cpp @@ -40,7 +40,7 @@ #include "BTAdapter.hpp" #include "BTDevice.hpp" #include "BTManager.hpp" - +#include "BTGattService.hpp" using namespace direct_bt; diff --git a/src/direct_bt/BTGattChar.cpp b/src/direct_bt/BTGattChar.cpp index 7a6b2f4b..fe9767d0 100644 --- a/src/direct_bt/BTGattChar.cpp +++ b/src/direct_bt/BTGattChar.cpp @@ -36,6 +36,7 @@ #include <jau/debug.hpp> #include "BTDevice.hpp" +#include "BTGattService.hpp" #include "BTGattChar.hpp" #include "BTGattHandler.hpp" diff --git a/src/direct_bt/BTGattHandler.cpp b/src/direct_bt/BTGattHandler.cpp index fb404621..0e8ce82c 100644 --- a/src/direct_bt/BTGattHandler.cpp +++ b/src/direct_bt/BTGattHandler.cpp @@ -59,6 +59,10 @@ extern "C" { #include "BTManager.hpp" #include "DBTConst.hpp" +#include "BTGattService.hpp" +#include "BTGattChar.hpp" +#include "BTGattDesc.hpp" + using namespace direct_bt; BTGattEnv::BTGattEnv() noexcept |