diff options
Diffstat (limited to 'src/BLERemoteDescriptor.h')
-rw-r--r-- | src/BLERemoteDescriptor.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/BLERemoteDescriptor.h b/src/BLERemoteDescriptor.h new file mode 100644 index 0000000..a8d944d --- /dev/null +++ b/src/BLERemoteDescriptor.h @@ -0,0 +1,20 @@ +/* + * BLERemoteDescriptor.h + * + * Created on: Jul 8, 2017 + * Author: kolban + */ + +#ifndef COMPONENTS_CPP_UTILS_BLEREMOTEDESCRIPTOR_H_ +#define COMPONENTS_CPP_UTILS_BLEREMOTEDESCRIPTOR_H_ +#include "sdkconfig.h" +#if defined(CONFIG_BT_ENABLED) + +/** + * @brief A model of remote %BLE descriptor. + */ +class BLERemoteDescriptor { +public: +}; +#endif /* CONFIG_BT_ENABLED */ +#endif /* COMPONENTS_CPP_UTILS_BLEREMOTEDESCRIPTOR_H_ */ |