Files
lazarus-ccr/components/virtualtreeview-new/branches/4.8/demos/objects/mvcdemo.lpr
blikblum 3c284d1f60 Created branch 4.8.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1121 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2010-01-07 22:49:28 +00:00

19 lines
338 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, lclextensions_package;
begin
Application.Initialize;
Application.CreateForm(TfmMVCDemo, fmMVCDemo);
Application.Run;
end.