High level Bluetooth Low Energy API and radio abstraction layer

Dependencies:   nRF51822

Dependents:   LinkNode_LIS3DH

Fork of BLE_API by Bluetooth Low Energy

Revision:
34:da2ea8cd6216
Parent:
31:2c94f0501807
Child:
35:f3b0c1192cf7
--- a/hw/BLEDevice.h	Thu Apr 03 01:45:33 2014 +0100
+++ b/hw/BLEDevice.h	Wed May 21 15:01:14 2014 +0100
@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-  
+
 #ifndef __BLE_DEVICE_H__
 #define __BLE_DEVICE_H__
 
@@ -31,11 +31,11 @@
 /**************************************************************************/
 class BLEDevice
 {
-    public:
-        virtual Gap&          getGap() = 0;
-        virtual GattServer&   getGattServer() = 0;
-        virtual ble_error_t   init() = 0;
-        virtual ble_error_t   reset(void) = 0;
+public:
+    virtual Gap&        getGap()        = 0;
+    virtual GattServer& getGattServer() = 0;
+    virtual ble_error_t   init()        = 0;
+    virtual ble_error_t   reset(void)   = 0;
 };
 
-#endif
+#endif // ifndef __BLE_DEVICE_H__