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

35 lines
755 B
ObjectPascal

{******************************************}
{ }
{ FastReport FMX v1.0 }
{ IBX components registration }
{ }
{ Copyright (c) 1998-2013 }
{ by Alexander Tzyganenko, }
{ Fast Reports Inc. }
{ }
{******************************************}
unit FMXfrxIBXReg;
interface
{$I frx.inc}
{$I fmx.inc}
procedure Register;
implementation
uses
System.SysUtils, System.Classes, FMX.Controls
, DesignIntf, DesignEditors
, FMX.frxIBXComponents;
procedure Register;
begin
RegisterComponents('FastReport 2.0 FMX', [TfrxIBXComponents]);
end;
end.