
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8079 8e941d3f-bd1b-0410-a28a-d453659cc2b4
22 lines
454 B
ObjectPascal
22 lines
454 B
ObjectPascal
program MapViewer_Demo;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}cthreads,{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, Main, gpslistform, globals, gpsptform
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource:=True;
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.CreateForm(TGPSListViewer, GPSListViewer);
|
|
Application.Run;
|
|
end.
|
|
|