FastReport_FMX_2.8.12/LibD28/fs_ifdreg.pas

34 lines
698 B
ObjectPascal
Raw Permalink Normal View History

2024-01-10 21:50:38 +01:00
{******************************************}
{ }
{ 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.