source: platform/trunk/LDPlatform.FormNew.pas

Last change on this file was 11, checked in by chronos, 10 years ago
  • Added: Some new concept forms and actions.
File size: 380 bytes
Line 
1unit LDPlatform.FormNew;
2
3interface
4
5uses
6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
7 Vcl.Controls, Vcl.Forms, Vcl.Dialogs;
8
9type
10 TFormNew = class(TForm)
11 private
12 { Private declarations }
13 public
14 { Public declarations }
15 end;
16
17var
18 FormNew: TFormNew;
19
20implementation
21
22{$R *.dfm}
23
24end.
Note: See TracBrowser for help on using the repository browser.