Hai ihr,
ich möchte gerne den Interfaceabschnitt einer
Unit auswerden (source liegt natürlich vor) aber weiss noch nicht so recht wie ich das ganze effektiv angehen soll.
Ich möchte zum Schluss diese Informationen haben:
- Proceduren / Funktionen
- Klassen
- Public-Methoden
- Public-Propertys
- Typen
- Constanten
- Variablen
Kann mir einer eine guten Denkanstoss geben wie ich so etwas zum Beispiel auswerte
Delphi-Quellcode:
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TForm1 = class(TForm)
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
blubb = integer; blubber = boolean;
const
hallo = 1;
var
Form1: TForm1;
type TTest
=
class
(TStringList) private foo
: boolean; public
property anzeige :
boolean read foo
write
foo
;
end;
Stephan B.
"Lasst den Gänsen ihre Füßchen"