Einzelnen Beitrag anzeigen

Benutzerbild von wicht
wicht

Registriert seit: 15. Jan 2006
Ort: Das schöne Enger nahe Bielefeld
809 Beiträge
 
Delphi XE Professional
 
#2

AW: Überkreuz-Referenz zw. Klassen

  Alt 3. Mai 2012, 11:10
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
http://streamwriter.org

"I make hits. Not the public. I tell the DJ’s what to play. Understand?"
  Mit Zitat antworten Zitat