I have this code:
enum type{FOO, BAR}
class base{
funct(type t);
}
class other : base{
funct(type t);
}
int main(){
base x;
x = other();
x-funct(FOO); //This call base::funct()
}
Always call to base function, i dont get it.
I have this code:
enum type{FOO, BAR}
class base{
funct(type t);
}
class other : base{
funct(type t);
}
int main(){
base x;
x = other();
x-funct(FOO); //This call base::funct()
}
Always call to base function, i dont get it.