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

34 lines
698 B
ObjectPascal

{******************************************}
{ }
{ FastScript v1.9 }
{ Registration unit }
{ }
{ (c) 2003-2019 by Alexander Tzyganenko, }
{ Fast Reports Inc }
{ }
{******************************************}
unit fs_ifdreg;
{$i fs.inc}
interface
procedure Register;
implementation
uses
Classes, DesignIntf, Controls, fs_ifdrtti;
{-----------------------------------------------------------------------}
procedure Register;
begin
RegisterComponents('FastScript', [TfsFDRTTI]);
end;
end.