Click to See Complete Forum and Search --> : Multiple Inheritance


Dashali
April 1st, 1999, 06:34 AM
Is Multiple Inheritance possible in MFC?


Thanks in advance,

indika
April 1st, 1999, 07:49 AM
class CAttributeControlWindow : public CDialog, public CAttributeControl

Dave Lorde
April 1st, 1999, 08:24 AM
You need to be careful. Have a look at TechNote 016: "Using C++ Multiple Inheritance with MFC".


This tells you how to work around the restrictions concerning CObject, CRuntimeClass, and MFC message mapping, which all need special handling under MI.


Dave