unit srvEmpresas_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 { TsrvEmpresas } TsrvEmpresas = class(TDARemoteService, IsrvEmpresas) private protected { IsrvEmpresas methods } function GetNextAutoInc(const GeneratorName: String): Integer; end; implementation {$R *.dfm} uses {Generated:} FactuGES_Invk; procedure Create_srvEmpresas(out anInstance : IUnknown); begin anInstance := TsrvEmpresas.Create(NIL); end; { srvEmpresas } function TsrvEmpresas.GetNextAutoInc(const GeneratorName: String): Integer; begin end; initialization TROClassFactory.Create('srvEmpresas', Create_srvEmpresas, TsrvEmpresas_Invoker); finalization end.