I am trying to create a pure virtual function returning an array of pointers, without success! :cry: I would appreciate help greatly.
Like this?
virtual void **ReturnArrayOfPointers() = 0;
Replace void with the array of pointer's type (like int, float, MyRec, whatever)
IF u r using void *...then u have to typecast ur returning value as per ur requirements...