unit srvProvinciasPoblaciones_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. } {----------------------------------------------------------------------------} {$I Remobjects.inc} interface uses {vcl:} Classes, SysUtils, {RemObjects:} uROXMLIntf, uROClientIntf, uROTypes, uROServer, uROServerIntf, uROSessions, {Required:} uRORemoteDataModule, {Used RODLs:} DataAbstract4_Intf, {Generated:} FactuGES_Intf; type { TsrvProvinciasPoblaciones } TsrvProvinciasPoblaciones = class(TRORemoteDataModule, IsrvProvinciasPoblaciones) private protected { IsrvProvinciasPoblaciones methods } function DarListaProvincias: Binary; function DarListaPoblaciones(const ID_Provincia: Integer): Binary; end; implementation {$R *.dfm} uses {Generated:} FactuGES_Invk; procedure Create_srvProvinciasPoblaciones(out anInstance : IUnknown); begin anInstance := TsrvProvinciasPoblaciones.Create(nil); end; { srvProvinciasPoblaciones } function TsrvProvinciasPoblaciones.DarListaProvincias: Binary; begin end; function TsrvProvinciasPoblaciones.DarListaPoblaciones(const ID_Provincia: Integer): Binary; begin end; initialization TROClassFactory.Create('srvProvinciasPoblaciones', Create_srvProvinciasPoblaciones, TsrvProvinciasPoblaciones_Invoker); finalization end.