source: branches/dcomp/CmdLine/Compiler/UAnalyzer.pas

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