unit srvReferencias_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:} DARemoteService_Impl, {Used RODLs:} DataAbstract_Intf, {Generated:} FactuGES_Intf; type { TsrvReferencias } TsrvReferencias = class(TDARemoteService, IsrvReferencias) private protected { IsrvReferencias methods } end; implementation {$R *.dfm} uses {Generated:} FactuGES_Invk; procedure Create_srvReferencias(out anInstance : IUnknown); begin anInstance := TsrvReferencias.Create(NIL); end; { srvReferencias } initialization TROClassFactory.Create('srvReferencias', Create_srvReferencias, TsrvReferencias_Invoker); finalization end.