mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 10:39:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			423 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			423 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program TestXMLReder;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
uses
 | 
						|
  {$IFDEF UNIX}{$IFDEF UseCThreads}
 | 
						|
  cthreads,
 | 
						|
  {$ENDIF}{$ENDIF}
 | 
						|
  Interfaces, // this includes the LCL widgetset
 | 
						|
  Forms, TestXMLReaderUnit, LResources
 | 
						|
  { you can add units after this };
 | 
						|
 | 
						|
{$IFDEF WINDOWS}{$R TestXMLReder.rc}{$ENDIF}
 | 
						|
 | 
						|
begin
 | 
						|
  {$I TestXMLReder.lrs}
 | 
						|
  Application.Initialize;
 | 
						|
  Application.CreateForm(TXMLRederForm, XMLRederForm);
 | 
						|
  Application.Run;
 | 
						|
end.
 | 
						|
 |