diff options
author | Sven Gothel <[email protected]> | 2020-10-16 04:31:06 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-10-16 04:31:06 +0200 |
commit | b477d8d7057d367feb0d87cccb212221b5992f82 (patch) | |
tree | 6fb66f2349363f871d15a121bd583841b2b39c39 /src/direct_bt/GATTDescriptor.cpp | |
parent | 50fcf6a3781b4f3be7899c0e4a42c7b4a1505833 (diff) |
Extract common C++ Support Library inclusive Java JNI Binding to sub-project jaucpp, namespace jau
Diffstat (limited to 'src/direct_bt/GATTDescriptor.cpp')
-rw-r--r-- | src/direct_bt/GATTDescriptor.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/direct_bt/GATTDescriptor.cpp b/src/direct_bt/GATTDescriptor.cpp index b77b97f0..9e6e5135 100644 --- a/src/direct_bt/GATTDescriptor.cpp +++ b/src/direct_bt/GATTDescriptor.cpp @@ -23,7 +23,6 @@ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include <dbt_debug.hpp> #include <cstring> #include <string> #include <memory> @@ -33,11 +32,14 @@ #include <algorithm> +#include <jau/debug.hpp> + #include "GATTDescriptor.hpp" #include "GATTHandler.hpp" #include "DBTDevice.hpp" using namespace direct_bt; +using namespace jau; const uuid16_t GATTDescriptor::TYPE_EXT_PROP(Type::CHARACTERISTIC_EXTENDED_PROPERTIES); const uuid16_t GATTDescriptor::TYPE_USER_DESC(Type::CHARACTERISTIC_USER_DESCRIPTION); |