source: ObjectBaseTypes/Test.lpr

Last change on this file was 34, checked in by george, 14 years ago
  • Přidáno: Bitový proud v základních objektových třídách.
File size: 448 bytes
Line 
1program Test;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}{$IFDEF UseCThreads}
7 cthreads,
8 {$ENDIF}{$ENDIF}
9 Interfaces, // this includes the LCL widgetset
10 Forms,UMainForm,USystem,UObjectStringList,UObjectTypeBase,UObjectBoolean,
11 UObjectByte,UObjectDateTime,UObjectDouble,UObjectChar,UObjectInteger,
12 UObjectString,UBitStream,UFileSystem,UObjectPoint;
13
14{$R *.res}
15
16begin
17 Application.Initialize;
18 Application.Run;
19end.
20
Note: See TracBrowser for help on using the repository browser.