Re: [C++-sig] Recursion problem while testing inheritance

2009-04-09 Thread Stefan Seefeld
Hi Luciano, Luciano M. Wolf wrote: Hi, I'm doing some experiments calling methods from parent (or grandparent) class. I have a "Base" class defining a "test" virtual method. Class "Derived" inherits from "Base" but does not implement "test". At Python side (test.py) I redefine test and do a cal

[C++-sig] Recursion problem while testing inheritance

2009-04-09 Thread Luciano M. Wolf
Hi, I'm doing some experiments calling methods from parent (or grandparent) class. I have a "Base" class defining a "test" virtual method. Class "Derived" inherits from "Base" but does not implement "test". At Python side (test.py) I redefine test and do a call to "Base.test()". The program ends u