#include <bttypes.h>
Link against:
bluetooth.lib
class RUUIDContainer;
Description
A UUID container class
Members
Defined in RUUIDContainer
:
Member functions
IMPORT_C void Close();
Description
IMPORT_C void Reset();
Description
IMPORT_C TInt Count() const;
Description
Return value
IMPORT_C TUUID& operator[](TInt aIndex);
Description
Access a single UUID.
Parameters
TInt aIndex |
The index of the UUID to access.
|
|
Return value
TUUID &
|
The UUID. The reference remains valid as long as this object is in scope.
|
|
IMPORT_C const TUUID& operator[](TInt aIndex) const;
Description
Access a single UUID.
Parameters
TInt aIndex |
The index of the UUID to access.
|
|
Return value
const TUUID & |
The UUID. The reference remains valid as long as this object is in scope.
|
|
IMPORT_C const TUUID& At(TInt aIndex) const;
Description
Access a single UUID.
Parameters
TInt aIndex |
The index of the UUID to access.
|
|
Return value
const TUUID & |
The UUID. The reference remains valid as long as this object is in scope.
|
|
IsPresent(const TUUID &)const
IMPORT_C TBool IsPresent(const TUUID &aUuid) const;
Description
Check if a particular TUUID
is present in the RUUIDContainer
Parameters
const TUUID &aUuid |
the TUUID to be looked up in the container class
|
|
Return value
TBool
|
ETrue if it is present otherwise EFalse
|
|
IMPORT_C TInt Add(const TUUID &aUuid);
Description
Add an TUUID
into RUUIDContainer
Parameters
const TUUID &aUuid |
the TUUID to be added into the container class
|
|
Return value
TInt
|
a system wide error code.
|
|