fpc/packages/fpvectorial/examples/fpvectorialconverter.lpr
2011-01-26 09:11:53 +00:00

17 lines
275 B
ObjectPascal

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