AbetoDesign_FactuGES2/Source/ApplicationBase/Idiomas/Servidor/srvIdiomas_Impl.pas

59 lines
1.7 KiB
ObjectPascal
Raw Normal View History

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.