This repository has been archived on 2024-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
AlonsoYSal_FactuGES/Modulos/Intervalos/Servidor/srvIntervalos_Impl.pas
2007-06-21 16:02:50 +00:00

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.