Registriert seit: 26. Aug 2003
Ort: Steinfurt
292 Beiträge
Delphi XE2 Professional
|
Re: Interfacedeklaration, brauche Hilfe!
20. Nov 2006, 10:53
Moinsen,
versuch es mal so...
Delphi-Quellcode:
type
TApp = class;
TSession = class(TTypedComObject, ISession)
private
FSession: TSession;
FParent: TApp;
...
end;
TApp = class(TTypedComObject, IApp)
private
...
end;
Debuggers don't remove Bugs, they only show them in Slow-Motion.
|