20 lines
622 B
ObjectPascal
20 lines
622 B
ObjectPascal
|
|
program FirstSampleServer;
|
||
|
|
|
||
|
|
{#ROGEN:FirstSample.rodl} // RemObjects: Careful, do not remove!
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
FirstSample_Intf in 'FirstSample_Intf.pas',
|
||
|
|
FirstSample_Invk in 'FirstSample_Invk.pas',
|
||
|
|
FirstSampleService_Impl in 'FirstSampleService_Impl.pas' {FirstSampleService: TRORemoteDataModule},
|
||
|
|
FirstSampleServerMain in 'FirstSampleServerMain.pas' {FirstSampleServerMainForm};
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.CreateForm(TFirstSampleService, FirstSampleService);
|
||
|
|
Application.CreateForm(TFirstSampleServerMainForm, FirstSampleServerMainForm);
|
||
|
|
Application.Run;
|
||
|
|
end.
|