Mit einer sogenannten Forward-Deklaration. Ich glaube jedenfalls, dass es so heißt:
Delphi-Quellcode:
type
TIPConnection = class; // <<------
TDevice = class
public
ipcon: TIPConnection;
end;
TIPConnection = class
public
devices: Array [0..255] of TDevice;
end;
implementation
HTH