// Copyright (c) Sandeep Mistry. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. #ifndef _BLE_SERVICE_H_ #define _BLE_SERVICE_H_ #include "BLELocalAttribute.h" class BLEService : public BLELocalAttribute { public: BLEService(const char* uuid); }; #endif