aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ble/Bluetooth.h6
-rw-r--r--include/ble/ByteBuffer.h5
2 files changed, 7 insertions, 4 deletions
diff --git a/include/ble/Bluetooth.h b/include/ble/Bluetooth.h
index e9916e9..d238377 100644
--- a/include/ble/Bluetooth.h
+++ b/include/ble/Bluetooth.h
@@ -1,10 +1,12 @@
#ifndef BLUETOOTH_H
#define BLUETOOTH_H
-#include <string>
-#include <stdexcept>
#include <boost/uuid/uuid.hpp>
#include <boost/optional.hpp>
+#include <iosfwd>
+#include <stdexcept>
+#include <vector>
+#include <cstdint>
#include "ByteBuffer.h"
diff --git a/include/ble/ByteBuffer.h b/include/ble/ByteBuffer.h
index 74a1bf7..d977c67 100644
--- a/include/ble/ByteBuffer.h
+++ b/include/ble/ByteBuffer.h
@@ -1,11 +1,12 @@
#ifndef BYTE_STREAM_WRAPPER_H
#define BYTE_STREAM_WRAPPER_H
+#include <cstddef>
#include <cstdint>
#include <cstdlib>
-#include <string>
-#include <stdexcept>
+#include <iosfwd>
#include <memory>
+#include <stdexcept>
class ByteBufferException : public std::runtime_error {
public: