22 lines
683 B
ObjectPascal
22 lines
683 B
ObjectPascal
program ClassFactoryServer;
|
|
|
|
{#ROGEN:ClassFactoryLibrary.rodl} // RemObjects: Careful, do not remove!
|
|
|
|
uses
|
|
Forms,
|
|
ClassFactoryServerMain in 'ClassFactoryServerMain.pas' {ClassFactoryServerMainForm},
|
|
ClassFactoryLibrary_Intf in 'ClassFactoryLibrary_Intf.pas',
|
|
ClassFactoryLibrary_Invk in 'ClassFactoryLibrary_Invk.pas',
|
|
SingletonService_Impl in 'SingletonService_Impl.pas',
|
|
SingleCallService_Impl in 'SingleCallService_Impl.pas',
|
|
PooledService_Impl in 'PooledService_Impl.pas';
|
|
|
|
{$R *.RES}
|
|
{$R RODLFile.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TClassFactoryServerMainForm, ClassFactoryServerMainForm);
|
|
Application.Run;
|
|
end.
|