close Warning: Can't synchronize with repository "(default)" (No changeset 184 in the repository). Look in the Trac log for more information.

source: branches/delphi/Unit1.pas

Last change on this file was 44, checked in by chronos, 10 years ago
  • Added: Test Delphi conversion.
File size: 328 bytes
Line 
1unit Unit1;
2
3interface
4
5uses
6 SysUtils, Variants, Classes, Graphics,
7 Controls, Forms, Dialogs, StdCtrls;
8
9type
10 TForm1 = class(TForm)
11 CheckBox1: TCheckBox;
12 private
13 { Private declarations }
14 public
15 { Public declarations }
16 end;
17
18var
19 Form1: TForm1;
20
21implementation
22
23{$R *.dfm}
24
25end.
Note: See TracBrowser for help on using the repository browser.