Calling derived function in base classThank you!
Calling derived function in base classThank you both for you help so far. guestgulkan, I think that is a bit closer to what I need. Wou...
Calling derived function in base classIs there I can do this with A not knowing at all about B by using templates? I am not well versed i...
Calling derived function in base classIs there a way I can reference a B object even though B is derived from A? Specifically, B::func() ...
Calling derived function in base classHello, currently I am trying to do this: [code]class A { doFunction(void(*f)()){ f(); } } cl...