program SimpleCorbaClient;

uses
  Forms,
  ufrmCorbaClient in 'ufrmCorbaClient.pas' {Form1},
  SimpleCorbaServer_TLB in '..\CORBA Server\SimpleCorbaServer_TLB.pas';

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.
