2018-04-16 13:59:19 +00:00
|
|
|
program MapViewer_Demo;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
2019-03-06 06:11:46 +00:00
|
|
|
{$IFDEF UNIX}cthreads,{$ENDIF}
|
2018-04-16 13:59:19 +00:00
|
|
|
Interfaces, // this includes the LCL widgetset
|
2022-05-03 11:46:11 +00:00
|
|
|
Forms, printer4lazarus, Main, gpslistform, globals, gpsptform
|
2018-04-16 13:59:19 +00:00
|
|
|
{ you can add units after this };
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource:=True;
|
|
|
|
Application.Scaled:=True;
|
|
|
|
Application.Initialize;
|
2018-04-16 16:35:14 +00:00
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
2019-01-17 23:09:41 +00:00
|
|
|
Application.CreateForm(TGPSListViewer, GPSListViewer);
|
2018-04-16 13:59:19 +00:00
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|