FastReport_FMX_2.8.12/LibD28/FMXfs_iadoreg.pas

38 lines
773 B
ObjectPascal
Raw Normal View History

2024-01-10 21:50:38 +01:00
{******************************************}
{ }
{ FastScript v1.9 }
{ Registration unit }
{ }
{ (c) 2003-2007 by Alexander Tzyganenko, }
{ Fast Reports Inc }
{ }
{******************************************}
unit FMXfs_iadoreg;
{$i fs.inc}
interface
procedure Register;
implementation
uses
System.Classes
, DesignIntf
, FMX.Types
, FMX.fs_iadortti;
{-----------------------------------------------------------------------}
procedure Register;
begin
//GroupDescendentsWith(TfsADORTTI, TFmxObject);
RegisterComponents('FastScript FMX', [TfsADORTTI]);
end;
end.