unit DynWhere_Service_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. } {----------------------------------------------------------------------------} {$I Remobjects.inc} interface uses {vcl:} Classes, SysUtils, {RemObjects:} uROXMLIntf, uROClientIntf, uROTypes, uROServer, uROServerIntf, uROSessions, {Required:} uRORemoteDataModule, {Ancestor Implementation:} DataAbstractService_Impl, {Used RODLs:} DataAbstract4_Intf, {Generated:} DynWhere_Library_Intf, uDAClasses, uDADataStreamer, uDABin2DataStreamer; type { TDynWhere_Service } TDynWhere_Service = class(TDataAbstractService, IDynWhere_Service) DataStreamer: TDABin2DataStreamer; Schema: TDASchema; private protected { IDynWhere_Service methods } end; implementation {$R *.dfm} uses {Generated:} DynWhere_Library_Invk, DynWhere_ServerData; procedure Create_DynWhere_Service(out anInstance : IUnknown); begin anInstance := TDynWhere_Service.Create(nil); end; { DynWhere_Service } initialization TROClassFactory.Create('DynWhere_Service', Create_DynWhere_Service, TDynWhere_Service_Invoker); finalization end.