source: branches/lazarus/UMainUnit.pas.bak

Last change on this file was 61, checked in by george, 15 years ago
  • Přidáno: Další chybějící soubory s vývojové větve ve Free Pascalu.
File size: 332 bytes
Line 
1unit UMainUnit;
2
3{$mode objfpc}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs;
9
10type
11 TForm1 = class(TForm)
12 private
13 { private declarations }
14 public
15 { public declarations }
16 end;
17
18var
19 Form1: TForm1;
20
21implementation
22
23initialization
24 {$I UMainUnit.lrs}
25
26end.
27
Note: See TracBrowser for help on using the repository browser.