mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 18:32:37 +02:00
29 lines
868 B
ObjectPascal
29 lines
868 B
ObjectPascal
program jsonviewer;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, frmmain, frmNewBoolean, frmnewinteger, frmnewstring, msgjsonviewer, frmcreatecode, frarest, frmheader, frmauthentication,
|
|
frmaddtofavourite
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title:='JSON Data viewer';
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.CreateForm(TNewBooleanForm, NewBooleanForm);
|
|
Application.CreateForm(TNewNumberForm, NewNumberForm);
|
|
Application.CreateForm(TNewStringForm, NewStringForm);
|
|
Application.CreateForm(THeaderForm, HeaderForm);
|
|
Application.CreateForm(TAuthenticationForm, AuthenticationForm);
|
|
Application.CreateForm(TSaveRequestDataForm, SaveRequestDataForm);
|
|
Application.Run;
|
|
end.
|
|
|