Hi guys,
Here is my problem:
I have a class BaseClass that I extend to DerivedClass.
In BaseClass, I have three function that are A, B and C. Function A calls B which itself calls C.
In DerivedClass I have overriden functions A and C to A_ and C_.
When I'm running simulation, A_ calls B which then calls C while I'd like to call C_.
Is there a way to do so?
For now, as a workaround, I just copied B to DerivedClass.
Thanks in advance,
Johan