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

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