Hi to all
I have a project, and I found 2 the errors in derived class,
says the first:
'BaseClass' : base class undefined
the number of error is :Error C2504:
and I include the file:
#include "BaseClass.h"
and make declare base class with extern.
but still the error.
.........................
says the second:
'cannot convert from 'DerivedClass **' to 'BaseClass **'.
if I make pointer from base point to derived
// declaration
BaseClass ** PointerBaseClass;
//initialization
PointerBaseClass = new DerivedClass * ;
// this is code make in another class
the number of error is :error C2440:
Have you got any idea ?
the msdn help is not really clear,
I have made a lot of tries but no issue ....
Thank's for your time ...