lazarus/examples/xmlreader/TestXMLReader.lpr

20 lines
320 B
ObjectPascal

program TestXMLReder;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, TestXMLReaderUnit;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TXMLReaderForm, XMLReaderForm);
Application.Run;
end.