Componentes.Terceros.FastRe.../official/4.2/FastScript/fs_iadoreg.pas

40 lines
778 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}
, fs_iadortti;
{-----------------------------------------------------------------------}
procedure Register;
begin
RegisterComponents('FastScript', [TfsADORTTI]);
end;
end.