git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/branches/D2007-DA5@21 0c75b7a4-871f-7646-8a2f-f78d34cc349f
50 lines
1.4 KiB
ObjectPascal
50 lines
1.4 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. }
|
|
{----------------------------------------------------------------------------}
|
|
|
|
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.
|