An ABC acts solely as a base class for inherited classes. You cannot instantiate an ABC - you must instantiate one of the derived classes using new and assign it to a pointer to the base ABC.

Code:
xlINSTRUMENTS *pABC = new xlMM(...);
Regards
Alan