49 lines
1.4 KiB
ObjectPascal
49 lines
1.4 KiB
ObjectPascal
unit srvControles_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:} DataAbstract3_Intf,
|
|
{Generated:} VARELA_Intf, uDAScriptingProvider, uDABusinessProcessor,
|
|
uDAClasses, uDADataTable, uDABINAdapter, uDADataStreamer;
|
|
|
|
type
|
|
{ TsrvControles }
|
|
TsrvControles = class(TDARemoteService, IsrvControles)
|
|
bpControles: TDABusinessProcessor;
|
|
DABINAdapter: TDABINAdapter;
|
|
schControles: TDASchema;
|
|
private
|
|
protected
|
|
{ IsrvControles methods }
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
uses
|
|
{Generated:} VARELA_Invk, uDataModuleServer;
|
|
|
|
procedure Create_srvControles(out anInstance : IUnknown);
|
|
begin
|
|
anInstance := TsrvControles.Create(NIL);
|
|
end;
|
|
|
|
{ srvControles }
|
|
initialization
|
|
TROClassFactory.Create('srvControles', Create_srvControles, TsrvControles_Invoker);
|
|
|
|
finalization
|
|
|
|
end.
|