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

46 lines
852 B
ObjectPascal

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