lazarus/components/plotfunction/demo/event/ploteventdemo.lpr
mattias 26cb90f023 renamed plotpanel to plotfunction
git-svn-id: trunk@17519 -
2008-11-22 15:55:23 +00:00

21 lines
378 B
ObjectPascal

program Project1;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ you can add units after this }, frmmain, LResources;
{$IFDEF WINDOWS}{$R ploteventdemo.rc}{$ENDIF}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.