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 | |
---|
1 | unit UPDClientXMLRPC;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Classes, SysUtils, UPDClient;
|
---|
7 |
|
---|
8 | type
|
---|
9 |
|
---|
10 | { TPDClientXMLRPC }
|
---|
11 |
|
---|
12 | TPDClientXMLRPC = class(TPDClient)
|
---|
13 | constructor Create(AOwner: TComponent); override;
|
---|
14 | end;
|
---|
15 |
|
---|
16 |
|
---|
17 | implementation
|
---|
18 |
|
---|
19 | { TPDClientXMLRPC }
|
---|
20 |
|
---|
21 | constructor TPDClientXMLRPC.Create(AOwner: TComponent);
|
---|
22 | begin
|
---|
23 | inherited Create(AOwner);
|
---|
24 | BackendName := 'XMLRPC';
|
---|
25 | end;
|
---|
26 |
|
---|
27 | end.
|
---|
28 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.