Componentes.Terceros.RemObj.../internal/5.0.24.615/1/Data Abstract for Delphi/Samples/Fetch/FetchServer.dpr

25 lines
760 B
ObjectPascal

program FetchServer;
{#ROGEN:FetchLibrary.RODL} // RemObjects SDK: Careful, do not remove!
uses
uROComInit,
uROComboService,
Forms,
FetchServerMain in 'FetchServerMain.pas' {FetchServerMainForm},
FetchServerData in 'FetchServerData.pas' {FetchServerDataModule: TDataModule},
FetchLibrary_Intf in 'FetchLibrary_Intf.pas',
FetchLibrary_Invk in 'FetchLibrary_Invk.pas',
FetchService_Impl in 'FetchService_Impl.pas' {FetchService: TDataAbstractService};
{$R *.res}
{$R RODLFile.res}
begin
Application.Initialize;
Application.Title := 'Fetch Server';
Application.CreateForm(TFetchServerDataModule, FetchServerDataModule);
Application.CreateForm(TFetchServerMainForm, FetchServerMainForm);
Application.Run;
end.