Location:
tz.h
Link against: tzclient.lib
class CTzId : public CBase;
Encapsulates a time zone identifier.
The identifier may be either a name or a number.
CBase
- Base class for all classes to be instantiated on the heap
CTzId
- Encapsulates a time zone identifier
Defined in CTzId
:
NewL()
, NewL()
, TimeZoneNameID()
, TimeZoneNumericID()
, operator!=()
, operator==()
, ~CTzId()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
static IMPORT_C CTzId *NewL(TUint aNumericId);
Time
zone ID factory method.
|
|
|
static IMPORT_C CTzId *NewL(const TDesC8 &aNameIdentity);
Time
zone ID factory method.
|
|
IMPORT_C const TDesC8 &TimeZoneNameID() const;
Retrieves the time zone's name. This can be used after calling RTz::GetTimeZoneIdL()
.
|
IMPORT_C TUint TimeZoneNumericID() const;
Retrieves the time zone's numeric ID. This can be used after calling RTz::GetTimeZoneIdL()
.
|