added debugging

Fork of BLE_nRF8001 by RedBearLab

BLE_nRF8001/BLEUuid.h

Committer:
RedBearLab
Date:
2014-10-17
Revision:
0:075ea2812998

File content as of revision 0:075ea2812998:

#ifndef _BLE_UUID_H_
#define _BLE_UUID_H_

#define MAX_UUID_LENGTH 16

class BLEUuid
{
  public:
    BLEUuid(const char * str);

    const char* str();
    const unsigned char* data();
    unsigned char length();

  private:
    const char*    _str;
    unsigned char _data[MAX_UUID_LENGTH];
    unsigned char _length;
};

#endif