@@ -0,0 +1,14 @@
+program RESTDebugger;
+
+uses
+ Vcl.Forms,
+ _frmMain in '..\src\_frmMain.pas' {frmMain};
+{$R *.res}
+begin
+ Application.Initialize;
+ Application.MainFormOnTaskbar := True;
+ Application.CreateForm(TfrmMain, frmMain);
+ Application.Run;
+end.
@@ -0,0 +1,16 @@
+object frmMain: TfrmMain
+ Left = 0
+ Top = 0
+ Caption = 'REST Debugger'
+ ClientHeight = 586
+ ClientWidth = 918
+ Color = clBtnFace
+ Font.Charset = DEFAULT_CHARSET
+ Font.Color = clWindowText
+ Font.Height = -11
+ Font.Name = 'Tahoma'
+ Font.Style = []
+ OldCreateOrder = False
+ PixelsPerInch = 96
+ TextHeight = 13
+end
@@ -0,0 +1,24 @@
+unit _frmMain;
+interface
+ Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
+ Vcl.Controls, Vcl.Forms, Vcl.Dialogs;
+type
+ TfrmMain = class(TForm)
+ private
+ { Private-Deklarationen }
+ public
+ { Public-Deklarationen }
+ end;
+var
+ frmMain: TfrmMain;
+implementation
+{$R *.dfm}