source:
branches/dcomp/CmdLine/Compiler/UAnalyzer.pas
Last change on this file was 94, checked in by , 8 years ago | |
---|---|
File size: 315 bytes |
Line | |
---|---|
1 | unit UAnalyzer; |
2 | |
3 | interface |
4 | |
5 | type |
6 | TAnalyzer = class |
7 | Name: string; |
8 | procedure Analyze; virtual; |
9 | constructor Create; virtual; |
10 | end; |
11 | |
12 | TAnalyzerClass = class of TAnalyzer; |
13 | |
14 | implementation |
15 | |
16 | procedure TAnalyzer.Analyze; |
17 | begin |
18 | WriteLn('Analyze'); |
19 | end; |
20 | |
21 | constructor TAnalyzer.Create; |
22 | begin |
23 | |
24 | end; |
25 | |
26 | end. |
Note:
See TracBrowser
for help on using the repository browser.