git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES/trunk@5 9a1d36f3-7752-2d40-8ccb-50eb49674c68
47 lines
1.3 KiB
ObjectPascal
47 lines
1.3 KiB
ObjectPascal
unit srvIntervalos_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, uDAClasses, uDADataTable, uDABINAdapter;
|
|
|
|
type
|
|
{ TsrvIntervalos }
|
|
TsrvIntervalos = class(TDARemoteService, IsrvIntervalos)
|
|
schIntervalos: TDASchema;
|
|
DABINAdapter: TDABINAdapter;
|
|
private
|
|
protected
|
|
{ IsrvIntervalos methods }
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
uses
|
|
{Generated:} FactuGES_Invk, uDataModuleServer;
|
|
|
|
procedure Create_srvIntervalos(out anInstance : IUnknown);
|
|
begin
|
|
anInstance := TsrvIntervalos.Create(NIL);
|
|
end;
|
|
|
|
{ srvIntervalos }
|
|
initialization
|
|
TROClassFactory.Create('srvIntervalos', Create_srvIntervalos, TsrvIntervalos_Invoker);
|
|
|
|
finalization
|
|
|
|
end.
|