Files
lazarus-ccr/components/virtualtreeview-new/branches/4.8/demos/vtbasic/vtbasic.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

28 lines
503 B
ObjectPascal

program vtbasic;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Main
{$ifdef DEBUG_VTV}
,vtlogger, ipcchannel
{$endif}
;
begin
{$ifdef DEBUG_VTV}
Logger.Channels.Add(TIPCChannel.Create);
Logger.Clear;
Logger.ActiveClasses := [lcScroll, lcWarning];
{$endif}
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.