83 lines
2.2 KiB
ObjectPascal
83 lines
2.2 KiB
ObjectPascal
unit DynWhere_Library_Intf;
|
|
|
|
{----------------------------------------------------------------------------}
|
|
{ This unit was automatically generated by the RemObjects SDK after reading }
|
|
{ the RODL file associated with this project . }
|
|
{ }
|
|
{ Do not modify this unit manually, or your changes will be lost when this }
|
|
{ unit is regenerated the next time you compile the project. }
|
|
{----------------------------------------------------------------------------}
|
|
|
|
{$I Remobjects.inc}
|
|
|
|
interface
|
|
|
|
uses
|
|
{vcl:} Classes, TypInfo,
|
|
{RemObjects:} uROXMLIntf, uROClasses, uROClient, uROTypes, uROClientIntf,
|
|
{Used RODLs:} DataAbstract4_Intf;
|
|
|
|
const
|
|
{ Library ID }
|
|
LibraryUID = '{6FE385D0-259A-47F4-933C-9626A169FB88}';
|
|
TargetNamespace = '';
|
|
|
|
{ Service Interface ID's }
|
|
IDynWhere_Service_IID : TGUID = '{55D412A7-8A48-4BD1-B557-BCA976C2AF80}';
|
|
|
|
{ Event ID's }
|
|
|
|
type
|
|
{ Forward declarations }
|
|
IDynWhere_Service = interface;
|
|
|
|
|
|
|
|
|
|
|
|
{ Enumerateds }
|
|
|
|
{ IDynWhere_Service }
|
|
IDynWhere_Service = interface(IDataAbstractService)
|
|
['{55D412A7-8A48-4BD1-B557-BCA976C2AF80}']
|
|
end;
|
|
|
|
{ CoDynWhere_Service }
|
|
CoDynWhere_Service = class
|
|
class function Create(const aMessage: IROMessage; aTransportChannel: IROTransportChannel): IDynWhere_Service;
|
|
end;
|
|
|
|
{ TDynWhere_Service_Proxy }
|
|
TDynWhere_Service_Proxy = class(TDataAbstractService_Proxy, IDynWhere_Service)
|
|
protected
|
|
function __GetInterfaceName:string; override;
|
|
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
{vcl:} SysUtils,
|
|
{RemObjects:} uROEventRepository, uROSerializer, uRORes;
|
|
|
|
{ CoDynWhere_Service }
|
|
|
|
class function CoDynWhere_Service.Create(const aMessage: IROMessage; aTransportChannel: IROTransportChannel): IDynWhere_Service;
|
|
begin
|
|
result := TDynWhere_Service_Proxy.Create(aMessage, aTransportChannel);
|
|
end;
|
|
|
|
function TDynWhere_Service_Proxy.__GetInterfaceName:string;
|
|
begin
|
|
result := 'DynWhere_Service';
|
|
end;
|
|
|
|
initialization
|
|
RegisterProxyClass(IDynWhere_Service_IID, TDynWhere_Service_Proxy);
|
|
|
|
|
|
finalization
|
|
UnregisterProxyClass(IDynWhere_Service_IID);
|
|
|
|
end.
|