Hi there, I'm a bit confused as to how to use this object.

I have created my own object and I want to use CObArray to be able to make handy arrays of it. Do I need to derive a new array class for the object? ie

Code:
class CMyObject: public CObject
{....};


class CMyObjectArray: public CObArray
{...};
If so, what sort of code do I need in the CMyObjectArray class definition/ implementation to make it work lovely. If not, then how do I implement CObArray for use with my newly created CObjects?

Thnx in advance (hope this makes any sorta sense)

dt