xtool/contrib/mORMot/SQLite3/Samples/ThirdPartyDemos/EMartin/SynJSONTreeview/SynJSONTVEditor.dpr

16 lines
287 B
ObjectPascal

program SynJSONTVEditor;
uses
Forms,
fMain in 'fMain.pas' {frmJSONEditor},
SynJSONTreeView in 'SynJSONTreeView.pas',
fLevel in 'fLevel.pas' {frmLevel};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmJSONEditor, frmJSONEditor);
Application.Run;
end.