PaulField1
Programmer
I have three classes A, B, C each inherriting from one another B=Class(A), C=Class(B). I have a virtual operation AddXYToSeries in each class. Class B adds some additional functionality then calls inherited AddXYToSeries. Class C adds some further functionality but needs to call Class A AddXYToSeries operation not the inherited Class B AddXYToSeries. Does anyone know the correct syntax to do this? In C++ (ahh!) you just call A::AddXYToSeries from within C::AddXYToSeries member function to get the appropriate one.
I've tried casting Self back to the base clase
A(Self).AddXYToSeries and (Self as A).AddXYToSeries but it just calls itself not the class A operation and I get a stack overflow.
I've also tried
inherited A.AddXYToSeries;
but the compiler did not like it.
I've tried casting Self back to the base clase
A(Self).AddXYToSeries and (Self as A).AddXYToSeries but it just calls itself not the class A operation and I get a stack overflow.
I've also tried
inherited A.AddXYToSeries;
but the compiler did not like it.