unit NewService_Impl; {----------------------------------------------------------------------------} { This unit was automatically generated by the RemObjects SDK after reading } { the RODL file associated with this project . } { } { This is where you are supposed to code the implementation of your objects. } {----------------------------------------------------------------------------} interface uses {vcl:} Classes, SysUtils, {RemObjects:} uROClientIntf, uROTypes, uROServer, uROServerIntf, uROSessions, {Ancestor Implementation:} DataAbstractService_Impl, {Used RODLs:} DataAbstract4_Intf, {Generated:} BusinessRulesScriptsLibrary_Intf, uDADataStreamer, uDABinAdapter,uDAInterfaces; type { TNewService } TNewService = class(TDataAbstractService, INewService) BinDataStreamer: TDABinDataStreamer; private protected end; implementation {$R *.dfm} uses {Generated:} BusinessRulesScriptsLibrary_Invk, BusinessRulesScripts_ServerData,TypInfo; procedure Create_NewService(out anInstance: IUnknown); begin anInstance := TNewService.Create(nil); end; initialization TROClassFactory.Create('NewService', Create_NewService, TNewService_Invoker); finalization end.