program Srv;

uses
  Forms,
  SrvMain in 'SrvMain.pas' {FrmAutoTest},
  Srv_TLB in 'Srv_TLB.pas',
  TestImpl in 'TestImpl.pas' {AutoTest: CoClass};

{$R *.TLB}

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TFrmAutoTest, FrmAutoTest);
  Application.Run;
end.
