-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathVCL.TMS.myCloudDataRestClientReg.pas
More file actions
38 lines (30 loc) · 1.62 KB
/
VCL.TMS.myCloudDataRestClientReg.pas
File metadata and controls
38 lines (30 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ *************************************************************************** }
{ TMS VCL myCloudData RESTClient }
{ for Delphi & C++Builder }
{ }
{ written by TMS Software }
{ copyright © 2016 }
{ Email : info@tmssoftware.com }
{ Web : http://www.tmssoftware.com }
{ }
{ The source code is given as is. The author is not responsible }
{ for any possible damage done due to the use of this code. }
{ The component can be freely used in any application. The complete }
{ source code remains property of the author and may not be distributed, }
{ published, given or sold in any form as such. No parts of the source }
{ code can be included in any other component or application without }
{ written authorization of the author. }
{ *************************************************************************** }
unit VCL.TMS.myCloudDataRestClientReg;
interface
{$R VCL.TMS.myCloudDataRestClientReg.dcr}
uses
System.Classes,
VCL.TMS.myCloudDataRestClient;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('TMS myCloudData', [TVCLmyCloudDataRESTClient]);
end;
end.