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

17 lines
291 B
ObjectPascal

program fpvectorialconverter;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms, fpvc_mainform, fpvectorialpkg;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TformVectorialConverter, formVectorialConverter);
Application.Run;
end.