Componentes.Terceros.FastRe.../internal/4.2/1/FastScript/fs_idbreg.pas
2007-11-18 19:40:07 +00:00

40 lines
808 B
ObjectPascal

{******************************************}
{ }
{ FastScript v1.9 }
{ Registration unit }
{ }
{ (c) 2003-2007 by Alexander Tzyganenko, }
{ Fast Reports Inc }
{ }
{******************************************}
unit fs_idbreg;
{$i fs.inc}
interface
procedure Register;
implementation
uses
Classes
{$IFNDEF Delphi6}
, DsgnIntf
{$ELSE}
, DesignIntf
{$ENDIF}
, fs_idbrtti, fs_idbctrlsrtti;
{-----------------------------------------------------------------------}
procedure Register;
begin
RegisterComponents('FastScript', [TfsDBRTTI, TfsDBCtrlsRTTI]);
end;
end.