unit ReducedDeltaLibrary_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 = '{786E8771-A3CB-4F96-9FE4-E16120755985}'; TargetNamespace = ''; { Service Interface ID's } IReducedDeltaService_IID : TGUID = '{0391158F-E776-481E-91F1-45BF69296552}'; { Event ID's } type { Forward declarations } IReducedDeltaService = interface; { Enumerateds } { IReducedDeltaService } IReducedDeltaService = interface(IDataAbstractService) ['{0391158F-E776-481E-91F1-45BF69296552}'] end; { CoReducedDeltaService } CoReducedDeltaService = class class function Create(const aMessage: IROMessage; aTransportChannel: IROTransportChannel): IReducedDeltaService; end; { TReducedDeltaService_Proxy } TReducedDeltaService_Proxy = class(TDataAbstractService_Proxy, IReducedDeltaService) protected function __GetInterfaceName:string; override; end; implementation uses {vcl:} SysUtils, {RemObjects:} uROEventRepository, uROSerializer, uRORes; { CoReducedDeltaService } class function CoReducedDeltaService.Create(const aMessage: IROMessage; aTransportChannel: IROTransportChannel): IReducedDeltaService; begin result := TReducedDeltaService_Proxy.Create(aMessage, aTransportChannel); end; function TReducedDeltaService_Proxy.__GetInterfaceName:string; begin result := 'ReducedDeltaService'; end; initialization RegisterProxyClass(IReducedDeltaService_IID, TReducedDeltaService_Proxy); finalization UnregisterProxyClass(IReducedDeltaService_IID); end.