git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@2 b6239004-a887-0f4b-9937-50029ccdca16
46 lines
1.3 KiB
ObjectPascal
46 lines
1.3 KiB
ObjectPascal
unit NewService_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:} DataAbstractService_Impl,
|
|
{Used RODLs:} DataAbstract4_Intf,
|
|
{Generated:} BusinessRulesScriptsLibrary_Intf, uDADataStreamer,
|
|
uDABinAdapter,uDAInterfaces;
|
|
|
|
type
|
|
{ TNewService }
|
|
TNewService = class(TDataAbstractService, INewService)
|
|
BinDataStreamer: TDABinDataStreamer;
|
|
private
|
|
protected
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
uses
|
|
{Generated:} BusinessRulesScriptsLibrary_Invk, BusinessRulesScripts_ServerData,TypInfo;
|
|
|
|
procedure Create_NewService(out anInstance: IUnknown);
|
|
begin
|
|
anInstance := TNewService.Create(nil);
|
|
end;
|
|
|
|
initialization
|
|
TROClassFactory.Create('NewService', Create_NewService, TNewService_Invoker);
|
|
|
|
finalization
|
|
|
|
end.
|
|
|