program URLGrabber;

uses
  {$IFDEF WIN32}
  Forms,
  {$ENDIF}
  {$IFDEF LINUX}
  QForms,
  {$ENDIF}
  URLGrabberMainForm in 'URLGrabberMainForm.pas' {URLGrabberForm};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TURLGrabberForm, URLGrabberForm);
  Application.Run;
end.