From Forum Nokia Wiki
CBase is the base class for all classes to be instantiated on the heap. By convention, all classes derived from CBase have a name beginning with the letter 'C' (hence they're called C classes).
The class has three important features:
- A virtual destructor that allows instances of derived classes to be destroyed and properly cleaned up through a CBase* pointer.
- Initialisation of the CBase derived object to binary zeroes meaning that members, whose initial value should be zero, do not have to be initialised in the constructor. This allows safe destruction of a partially-constructed object.
- private copy-constructor and assignment operator to prevent making "shallow copies" of objects.