Repository URL to install this package:
Version:
1.6 ▾
|
lazarus
/
usr
/
share
/
lazarus
/
1.6
/
components
/
fpvectorial
/
examples
/
fpvectorialconverter.lpr
|
---|
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.