48 lines
1.3 KiB
ObjectPascal
48 lines
1.3 KiB
ObjectPascal
|
|
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. }
|
||
|
|
{----------------------------------------------------------------------------}
|
||
|
|
|
||
|
|
{$I Remobjects.inc}
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
{vcl:} Classes, SysUtils,
|
||
|
|
{RemObjects:} uROXMLIntf, uROClientIntf, uROTypes, uROServer, uROServerIntf, uROSessions,
|
||
|
|
{Required:} uRORemoteDataModule,
|
||
|
|
{Ancestor Implementation:} DataAbstractService_Impl,
|
||
|
|
{Used RODLs:} DataAbstract4_Intf,
|
||
|
|
{Generated:} FactuGES_Intf;
|
||
|
|
|
||
|
|
type
|
||
|
|
{ TsrvEmpresas }
|
||
|
|
TsrvEmpresas = class(TDataAbstractService, IsrvEmpresas)
|
||
|
|
private
|
||
|
|
protected
|
||
|
|
{ IsrvEmpresas methods }
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
uses
|
||
|
|
{Generated:} FactuGES_Invk;
|
||
|
|
|
||
|
|
procedure Create_srvEmpresas(out anInstance : IUnknown);
|
||
|
|
begin
|
||
|
|
anInstance := TsrvEmpresas.Create(nil);
|
||
|
|
end;
|
||
|
|
|
||
|
|
{ srvEmpresas }
|
||
|
|
initialization
|
||
|
|
TROClassFactory.Create('srvEmpresas', Create_srvEmpresas, TsrvEmpresas_Invoker);
|
||
|
|
|
||
|
|
finalization
|
||
|
|
|
||
|
|
end.
|