Hello All,
I need your help to understand , if the following code is ok ? (Baically to have polymorphism of different argument types )
class A{
...
...
public:
int function( structA *ptrA);
int function( structB *ptrB);
}
I am getting the compilation error saying the
syntax error at the 2nd line :
error C2061: syntax error : identifier 'structB'