source: PersistentData/Backend/UPDClientXMLRPC.pas

Last change on this file was 561, checked in by chronos, 21 months ago
  • Modified: Code cleanup.
  • Modified: Use Generics.Collections.
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.