Location:
tzlocalizationdatatypes.h
Link against: timezonelocalization.lib
class CTzLocalizedTimeZoneArray : public CTzLocalizedArray< CTzLocalizedTimeZone >;
An array of time zones. This just passes function calls on to its templated base class, CTzLocalizedArray
.
CTzLocalizedArray< CTzLocalizedTimeZone >
- No description.
CTzLocalizedTimeZoneArray
- An array of time zones
Defined in CTzLocalizedTimeZoneArray
:
AppendL()
, At()
, Count()
, Find()
, NewL()
, NewLC()
, Remove()
, Sort()
static IMPORT_C CTzLocalizedTimeZoneArray *NewL();
Allocates and constructs a new CTzLocalizedTimeZoneArray object.
|
static IMPORT_C CTzLocalizedTimeZoneArray *NewLC();
Allocates and constructs a new CTzLocalizedTimeZoneArray object. The pointer to the new object is left on the cleanup stack.
|
IMPORT_C CTzLocalizedTimeZone &At(TInt aIndex) const;
Returns the time zone at the specified index.
|
|
IMPORT_C TInt Count() const;
Returns the number of elements in the array.
|
IMPORT_C void AppendL(CTzLocalizedTimeZone *aElement);
Appends a time zone to this array. Ownership of the pointer is transferred to the array.
|
IMPORT_C void Remove(TInt aIndex);
Removes the time zone at the specified index.
|
IMPORT_C void Sort(TLinearOrder< CTzLocalizedTimeZone > anOrder);
Sorts the array.
|
IMPORT_C TInt Find(CTzLocalizedTimeZone *anEntry, TIdentityRelation< CTzLocalizedTimeZone > aIdentityRelation);
Searches for a time zone in this array.
|
|