DAServer_Invk.pas 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. unit DAServer_Invk;
  2. // ----------------------------------------------------------------------
  3. // This file was automatically generated by Remoting SDK from a
  4. // RODL file downloaded from a server or associated with this project.
  5. //
  6. // Do not modify this file manually, or your changes will be lost when
  7. // it is regenerated the next time you update your RODL.
  8. // ----------------------------------------------------------------------
  9. {$I RemObjects.inc}
  10. interface
  11. uses
  12. {$IFDEF DELPHIXE2UP}System.SysUtils{$ELSE}SysUtils{$ENDIF},
  13. {$IFDEF DELPHIXE2UP}System.Classes{$ELSE}Classes{$ENDIF},
  14. uROEncoding,
  15. uROXMLIntf,
  16. uROServer,
  17. uROServerIntf,
  18. uROClasses,
  19. uROTypes,
  20. uROClientIntf,
  21. DataAbstract4_Intf,
  22. DataAbstract4_Invk,
  23. DAServer_Intf;
  24. type
  25. { Forward declarations }
  26. TDataService_Invoker = class;
  27. TDataService_Invoker = class(DataAbstract4_invk.TDataAbstractService_Invoker)
  28. public
  29. constructor Create; override;
  30. end;
  31. implementation
  32. uses
  33. uROSystem,
  34. uROEventRepository,
  35. uRORes,
  36. uROClient;
  37. constructor TDataService_Invoker.Create;
  38. begin
  39. inherited Create();
  40. FAbstract := false;
  41. end;
  42. initialization
  43. finalization
  44. end.