Hi,

How do I declare an array of pointers, which are pointing to a class I've created myself?

So then I can do something like this:

pnt_array[4] = new MyClass(5);

Thank you for any help.

Jonny Wong