source: branches/2.19_branch/Components/Test.pas@ 324

Last change on this file since 324 was 15, checked in by RBRi, 19 years ago

+ components stuff

  • Property svn:eol-style set to native
File size: 309 bytes
Line 
1Unit Test;
2
3Interface
4
5Type
6 TBob=class
7 Cabbage: integer;
8 constructor Create;
9 destructor Destroy; override;
10 procedure DoInit;
11 end;
12
13Implementation
14
15constructor TBob.Create;
16begin
17
18end;
19
20destructor TBob.Destroy;
21begin
22end;
23
24 procedure TBob.DoInit;
25 begin
26 end;
27
28Initialization
29End.
Note: See TracBrowser for help on using the repository browser.