Can we create a pointer of abstract class?
Is this valid?
CTypedPtrList<CPtrList, SomeAbstractBaseClass*> m_List;
SomeAbstractBaseClass is an abstract base class.
please help
Printable View
Can we create a pointer of abstract class?
Is this valid?
CTypedPtrList<CPtrList, SomeAbstractBaseClass*> m_List;
SomeAbstractBaseClass is an abstract base class.
please help
Yes,
U can declare a pointer of a abstract class
Vinod
What happens when you try to create a pointer of abstract class?