-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathFMX.TMS.myCloudDataRestClientReg.pas
More file actions
36 lines (28 loc) · 1.59 KB
/
FMX.TMS.myCloudDataRestClientReg.pas
File metadata and controls
36 lines (28 loc) · 1.59 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
{ *************************************************************************** }
{ TMS FMX 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 FMX.TMS.myCloudDataRestClientReg;
interface
{$R FMX.TMS.myCloudDataRestClientReg.dcr}
uses
Classes, FMX.TMS.myCloudDataRestClient;
implementation
procedure Register;
begin
RegisterComponents('TMS myCloudData', [TFMXmyCloudDataRESTClient]);
end;
end.