program ReportBuilderServer; {#ROGEN:ReportBuilderLibrary.rodl} // RemObjects: Careful, do not remove! uses uROCOMInit, Forms, ReportBuilderLibrary_Intf in 'ReportBuilderLibrary_Intf.pas', ReportBuilderLibrary_Invk in 'ReportBuilderLibrary_Invk.pas', DARBService_Impl in 'DARBService_Impl.pas' {DARBService: TDataAbstractService}, ReportBuilder_ServerMain in 'ReportBuilder_ServerMain.pas' {ReportBuilder_ServerMainForm}; {$R *.RES} {$R RODLFile.res} begin Application.Initialize; Application.Title := 'ReportBuilder Server'; Application.CreateForm(TReportBuilder_ServerMainForm, ReportBuilder_ServerMainForm); Application.Run; end.