Files
lazarus-ccr/components/virtualtreeview-unstable/demos/objects/mvcdemo.lpr
2007-02-19 18:37:25 +00:00

19 lines
315 B
ObjectPascal

program mvcdemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, MVCDemoMain;
begin
Application.Initialize;
Application.CreateForm(TfmMVCDemo, fmMVCDemo);
Application.Run;
end.