i have base interface:
type
iBaseFoo = interface
BaseMethod1;
BaseMethod2;
BaseMethod3;
end;
iTestFoo = interface(ibaseFoo)
TestFooMethod;
end;
--
TBaseFoo = class(TInterfacedObject, iBaseFoo)
private
// some code here
protected
BaseMethod1;
BaseMe...