Entschuldigt die späte Rückmeldung!
Ich muss noch mal nachfragen: sehe ich es richtig, dass es mit folgender Deklaration
Delphi-Quellcode:
type
IMyInterface = interface
procedure Show;
end;
TMyClass = class(TAggregatedObject, IMyInterface)
procedure Show;
end;
TMyWrapper = class(TInterfacedObject, IMyInterface)
private
FMyInterface: IMyInterface;
public
constructor Create;
property MyInterface: IMyInterface read FMyInterface implements IMyInterface;
end;
keine sauber Implementation ohne manuelles Freigeben von FMyInterface gibt? Und wie sähe diese mit Freigeben aus?
Dank und Gruß!