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