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