Componentes.Terceros.jcl/official/2.1.1/examples/common/containers/performance/ContainerPerformance.dpr
2010-01-18 16:51:36 +00:00

20 lines
430 B
ObjectPascal

program ContainerPerformance;
{$I jcl.inc}
uses
{$IFDEF MSWINDOWS}
Forms,
{$ENDIF MSWINDOWS}
ContainerPerformanceMain in 'ContainerPerformanceMain.pas' {MainForm},
ContainerPerformanceTests in 'ContainerPerformanceTests.pas';
{$R *.res}
{$R ..\..\..\..\source\windows\JclCommCtrlAsInvoker.res}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.