Location:
e32base.h
Link against: euser.lib
CObjectConIx
Supported from 5.0
A container for object containers
This is referred to as a container index.
The class provides the mechanism through which object containers, CObjectCon
types, are created.
|
Defined in CObjectConIx
:
CreateL()
, Lookup()
, NewL()
, Remove()
, ~CObjectConIx()
Inherited from CBase
:
operator new()
static CObjectConIx* NewL();
Creates a new container index.
|
~CObjectConIx();
Frees all resources owned by the container index, prior to its destruction.
In particular, it destroys all of its contained object containers.
CObjectCon* CreateL();
Creates a new object container and adds it into this container index's collection.
In addition to creating the object container, the function assigns the next available unique ID to it.
|
void Remove(CObjectCon* aCon);
Removes the specified object container from this container index and deletes it.
|
CObjectCon* Lookup(TInt aUniqueID) const
Gets a pointer to the object container with the specified unique ID.
|
|