FastReport_FMX_2.8.12/LibD28/FMX.frxFDReg.pas

35 lines
1.0 KiB
ObjectPascal
Raw Normal View History

2024-01-10 21:50:38 +01:00
{ --------------------------------------------------------------------------- }
{ AnyDAC FastReport v 2.0 enduser components }
{ }
{ (c)opyright DA-SOFT Technologies 2004-2013. }
{ All rights reserved. }
{ }
{ Initially created by: Serega Glazyrin <glserega@mezonplus.ru> }
{ Extended by: Francisco Armando Duenas Rodriguez <fduenas@gmxsoftware.com> }
{ --------------------------------------------------------------------------- }
{$I frx.inc}
unit FMX.frxFDReg;
interface
procedure Register;
implementation
uses
System.SysUtils, System.Classes
{$IFNDEF Delphi6}
, DsgnIntf
{$ELSE}
, DesignIntf, DesignEditors
{$ENDIF}
, FMX.frxFDComponents;
procedure Register;
begin
RegisterComponents('FastReport 2.0 FMX', [TfrxFDComponents]);
end;
end.