unit srvIdiomas_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:} uROClientIntf, uROTypes, uROServer, uROServerIntf, uROSessions, {Required:} uRORemoteDataModule, {Ancestor Implementation:} DataAbstractService_Impl, {Used RODLs:} DataAbstract4_Intf, {Generated:} uDABusinessProcessor, uDABin2DataStreamer, uDADataStreamer, uDAScriptingProvider, uDAClasses, FactuGES_Intf, uDAInterfaces; type { TsrvIdiomas } TsrvIdiomas = class(TDataAbstractService, IsrvIdiomas) Bin2DataStreamer: TDABin2DataStreamer; Diagrams: TDADiagrams; schIdiomas: TDASchema; DataDictionary: TDADataDictionary; private protected { IsrvIdiomas methods } end; implementation {$R *.dfm} uses {Generated:} FactuGES_Invk, uDataModuleServer, uDatabaseUtils, schIdiomasClient_Intf, uRestriccionesUsuarioUtils; procedure Create_srvIdiomas(out anInstance : IUnknown); begin anInstance := TsrvIdiomas.Create(nil); end; { srvIdiomas } var fClassFactory: IROClassFactory; initialization fClassFactory := TROClassFactory.Create('srvIdiomas', Create_srvIdiomas, TsrvIdiomas_Invoker); finalization UnRegisterClassFactory(fClassFactory); fClassFactory := nil; end.