FastReport_FMX_2.8.12/LibD28x64/FMX.frxFDReg.pas
2024-07-06 22:41:12 +02:00

35 lines
1.0 KiB
ObjectPascal

{ --------------------------------------------------------------------------- }
{ 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.