CTzConverter Class Reference

#include <tzconverter.h>

Link against: tzclient.lib

class CTzConverter : public CBase

Inherits from

Detailed Description

Converts between time expressed in UTC and local time.

See also: RTz

Since
9.1

Constructor & Destructor Documentation

~CTzConverter ( )

IMPORT_C~CTzConverter()

Destructor.

Member Function Documentation

ConvertToLocalTime ( TTime & )

IMPORT_C TIntConvertToLocalTime(TTime &aTime)

Converts a time from UTC to local (wall-clock) time for the current system time zone.

Parameters
aTimeOn entry, contains the UTC time to be converted and the converted value on exit.
Return Value
KErrNone if successful, otherwise another system error code.

ConvertToLocalTime ( TTime &, const CTzId & )

IMPORT_C TIntConvertToLocalTime(TTime &aTime,
const CTzId &aZone
)

Converts a time from UTC to the local (wall-clock) time for the specified time zone.

Parameters
aTimeOn entry, contains the UTC time to be converted, and the converted value on exit.
aZoneTime zone ID.
Return Value
KErrNone if successful, otherwise another system error code.

ConvertToUniversalTime ( TTime & )

IMPORT_C TIntConvertToUniversalTime(TTime &aTime)

Converts a local (wall-clock) time for the current system time zone into UTC.

Parameters
aTimeOn entry, contains the local time to be converted, and the converted value on exit.
Return Value
KErrNone if successful, otherwise another system error code.

ConvertToUniversalTime ( TTime &, const CTzId & )

IMPORT_C TIntConvertToUniversalTime(TTime &aTime,
const CTzId &aZone
)

Converts a local (wall-clock) time for the specified time zone into UTC.

Parameters
aTimeOn entry, contains the local time to be converted, and the converted value on exit.
aZoneThe time zone ID.
Return Value
KErrNone if successful, otherwise another system error code.

CurrentTzId ( )

IMPORT_C TUint16CurrentTzId()

Get the numerical ID of the current time zone.

Return Value
The time zone ID.

NewL ( RTz & )

IMPORT_C CTzConverter *NewL(RTz &aTzServer)[static]

CTzConverter factory method.

Provides client side caching for conversions in the local time zone. Caching is done through RTz but enabled through this interface. When caching has been enabled by this class and the RTz functions for local time zone conversion are used, they too will use the cache instead of the server. Multiple CTzConverter's can use the same RTz session. Each converter will be notified by the server if the time zone changes, and the cache will be updated appropriately.

To disable caching in RTz, the session must be closed. Caching will be re-enabled if a CTzConverter associated with the RTz is later used again for local time zone conversions.

This will leave with KErrNotReady if the RTz passed in is not connected.

Parameters
aTzServerConnection to the time zone server.
Return Value
A pointer to the new CTzConverter object. The caller takes ownership.

NotifyTimeZoneChangeL ( RTz::TTzChanges )

voidNotifyTimeZoneChangeL(RTz::TTzChangesaChange)

Server ( )

const RTz &Server()const