make members of UUID private; add accessors()

master
Rohit Grover 2014-05-29 08:57:57 +01:00
parent 95af932316
commit a7e64ea461
1 changed files with 11 additions and 0 deletions

11
UUID.h
View File

@ -37,6 +37,17 @@ public:
virtual ~UUID(void);
public:
uint8_t shortOrLong(void) const {
return type;
}
const uint8_t* getBaseUUID(void) const {
return base;
}
uint16_t get16BitUUID(void) const {
return value;
}
private:
uint8_t type; // UUID_TYPE_SHORT or UUID_TYPE_LONG
uint8_t base[LENGTH_OF_LONG_UUID]; // in case of custom
uint16_t value; // 16 bit uuid (byte 2-3 using with base)