User profile: eviltwinkie

User info
User name:eviltwinkie
History
Joined:
Number of posts:5
Latest posts:

Calling derived function in base class
Thank you!

Calling derived function in base class
Thank 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 class
Is 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 class
Is there a way I can reference a B object even though B is derived from A? Specifically, B::func() ...

Calling derived function in base class
Hello, currently I am trying to do this: [code]class A { doFunction(void(*f)()){ f(); } } cl...