class CObject : public CBase |
Implements reference counting to track concurrent references to itself.
An object of this type arranges automatic destruction of itself when the final reference is removed.
A reference counting object is any object which has CObject as its base class. Constructing a CObject derived type or calling its Open() member function adds a reference to that object by adding one to the reference count; calling its Close() member function removes a reference by subtracting one from the reference count; when the last user of the object calls Close(), the reference count becomes zero and the object is automatically destroyed.
Public Member Functions | |
---|---|
CObject() | |
~CObject() | |
TInt | AccessCount() |
IMPORT_C void | Close() |
IMPORT_C TFullName | FullName() |
IMPORT_C TName | Name() |
IMPORT_C TInt | Open() |
CObject * | Owner() |
IMPORT_C TInt | SetName(const TDesC *) |
IMPORT_C void | SetNameL(const TDesC *) |
void | SetOwner(CObject *) |
Protected Member Functions | |
---|---|
void | Dec() |
IMPORT_C TInt | Extension_(TUint, TAny *&, TAny *) |
void | Inc() |
TInt | UniqueID() |
Private Attributes | |
---|---|
__DECLARE_TEST | |
TInt | iAccessCount |
CObjectCon * | iContainer |
HBufC * | iName |
CObject * | iOwner |
TAny * | iSpare1 |
TAny * | iSpare2 |
TInt | AccessCount | ( | ) | const [inline] |
Gets the number of open references to this reference counting object.
The number of open references.
void | Dec | ( | ) | [protected, inline] |
Subtracts one from the reference count.
This function is called by the default implementation of the Close() member function of this class.
IMPORT_C TInt | Extension_ | ( | TUint | aExtensionId, |
TAny *& | a0, | |||
TAny * | a1 | |||
) | [protected, virtual] |
void | Inc | ( | ) | [protected, inline] |
Adds one to the reference count.
This function is called by the default implementation of the Open() member function of this class.
CObject * | Owner | ( | ) | const [inline] |
Gets a pointer to the reference counting object which owns this reference counting object.
A pointer to the owning reference counting object. This is NULL, if there is no owner.
void | SetOwner | ( | CObject * | anOwner | ) | [inline] |
Sets the owner of this reference counting object.
If this reference counting object already has an owner, then all knowledge of that owner is lost.
CObject * anOwner | A pointer to the reference counting object which is to be the new owner of this reference counting object. |
TInt | UniqueID | ( | ) | const [protected, inline] |
Gets this reference counting object's unique ID.
The unique ID is an integer which is a property of the object container. It forms part of the identity of all reference counting objects and is the same value for all reference counting objects held within the same object container.
This reference counting object's unique ID.