A reference counting object, a CObject type, may be owned by another. This, in turn, may be owned by yet another.
Ownership simply reflects a natural relationship. For example, a timer is owned by a thread and a thread is owned by a process. These objects are all instances of classes derived from CObject .
A reference counting object assigns ownership of itself to another reference counting object using CObject::SetOwner() . For example:
... class CMyobject : public CObject { ... }; class CTheOwner : public CObject { ... } ... CMyobject* owned; CTheOwner* owner; ... owned->SetOwner(owner);
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.