lazarus-ccr/components/virtualtreeview/demos/objects/mvcdemo.lpr
blikblum fab62d9664 Added objects (MVC) demo
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@59 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-19 01:16:21 +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.