lazarus/components/fpvectorial/examples/fpcorelexplorer.lpr
sekelsenmat 88579992c9 fpvectorial: Updates all examples
git-svn-id: trunk@33556 -
2011-11-16 09:33:12 +00:00

21 lines
378 B
ObjectPascal

program fpcorelexplorer;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, fpce_mainform, fpvectorialpkg
{ you can add units after this };
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TformCorelExplorer, formCorelExplorer);
Application.Run;
end.