Location:
e32cmn.h
Link against: euser.lib
class TUid;
A globally unique 32-bit number.
Defined in TUid
:
Name()
, Null()
, Uid()
, iUid
, operator!=()
, operator==()
IMPORT_C TBool operator==(const TUid &aUid) const;
Compares two UIDs for equality.
|
|
IMPORT_C TBool operator!=(const TUid &aUid) const;
Compares two UIDs for inequality.
|
|
IMPORT_C TUidName Name() const;
Generates and returns the standard text form of the UID.
The resulting text has the form:
[12345678]
The function always generates 10 characters, where the first and last characters are open and close square brackets enclosing exactly 8 hexadecimal digits (padded to the left with zeroes, if necessary).
|
static inline TUid Uid(TInt aUid);
Constructs the TUid object from a 32-bit integer.
|
|
static inline TUid Null();
Constructs a Null-valued TUid object.
|
TInt32 iUid;
The 32-bit integer UID value.