FastReport_2022_VCL/LibD28/fs_iadoreg.pas
2024-01-01 16:13:08 +01:00

46 lines
852 B
ObjectPascal

{******************************************}
{ }
{ FastScript v1.9 }
{ Registration unit }
{ }
{ (c) 2003-2007 by Alexander Tzyganenko, }
{ Fast Reports Inc }
{ }
{******************************************}
unit fs_iadoreg;
{$i fs.inc}
interface
procedure Register;
implementation
uses
Classes
{$IFNDEF Delphi6}
, DsgnIntf
{$ELSE}
, DesignIntf
{$ENDIF}
{$IFDEF DELPHI16}
, Controls
{$ENDIF}
, fs_iadortti;
{-----------------------------------------------------------------------}
procedure Register;
begin
{$IFDEF DELPHI16}
//GroupDescendentsWith(TfsADORTTI, TControl);
{$ENDIF}
RegisterComponents('FastScript', [TfsADORTTI]);
end;
end.