source: trunk/Packages/PersistentData/Backend/UPDClientXMLRPC.pas

Last change on this file was 137, checked in by chronos, 2 years ago
  • Added: Robots page.
  • Modified: Canonical URL for webcams.
  • Modified: Removed compiler mode delphi as it is already set in project.
  • Modified: Updated Common package.
  • Modified: Use Generics.Collections instead of fgl.
File size: 395 bytes
Line 
1unit UPDClientXMLRPC;
2
3interface
4
5uses
6 Classes, SysUtils, UPDClient;
7
8type
9
10 { TPDClientXMLRPC }
11
12 TPDClientXMLRPC = class(TPDClient)
13 constructor Create(AOwner: TComponent); override;
14 end;
15
16
17implementation
18
19{ TPDClientXMLRPC }
20
21constructor TPDClientXMLRPC.Create(AOwner: TComponent);
22begin
23 inherited Create(AOwner);
24 BackendName := 'XMLRPC';
25end;
26
27end.
28
Note: See TracBrowser for help on using the repository browser.