Hello,
say I have a base class that has a virtual function called Fun(). What do I have to do in my base class to make sure that all the Fun() functions in the derived classes are automatically called? I tried playing around with the 'this' pointer, but it goes into infinite loop. Any suggestions?