minor cosmetic change.

master
Rohit Grover 2014-11-18 10:09:48 +00:00
parent ec94c68e74
commit d419ec36e7
1 changed files with 6 additions and 6 deletions

View File

@ -44,11 +44,11 @@ public:
void hwCallback(ble_evt_t *p_ble_evt);
private:
GattCharacteristic *p_characteristics[BLE_TOTAL_CHARACTERISTICS];
ble_gatts_char_handles_t nrfCharacteristicHandles[BLE_TOTAL_CHARACTERISTICS];
GattAttribute *p_descriptors[BLE_TOTAL_DESCRIPTORS];
uint8_t descriptorCount;
uint16_t nrfDescriptorHandles[BLE_TOTAL_DESCRIPTORS];
GattCharacteristic *p_characteristics[BLE_TOTAL_CHARACTERISTICS];
ble_gatts_char_handles_t nrfCharacteristicHandles[BLE_TOTAL_CHARACTERISTICS];
GattAttribute *p_descriptors[BLE_TOTAL_DESCRIPTORS];
uint8_t descriptorCount;
uint16_t nrfDescriptorHandles[BLE_TOTAL_DESCRIPTORS];
nRF51GattServer() : GattServer(), p_characteristics(), nrfCharacteristicHandles(), p_descriptors(), descriptorCount(0), nrfDescriptorHandles() {
/* empty */
@ -59,4 +59,4 @@ private:
const nRF51GattServer& operator=(const nRF51GattServer &);
};
#endif
#endif // ifndef __NRF51822_GATT_SERVER_H__