Componentes.Terceros.FastRe.../official/4.2/Source/FIB/frxFIBReg.pas

35 lines
906 B
ObjectPascal

{******************************************}
{ }
{ FastReport v4.0 }
{ Fib enduser components }
{ }
{ Copyright (c) 2004 }
{ by Alexander Tzyganenko, }
{******************************************}
{ }
{ Improved by Butov Konstantin }
{ Improved by Serge Buzadzhy }
{ buzz@devrace.com }
{ }
{******************************************}
unit frxFIBReg;
interface
{$I frx.inc}
procedure Register;
implementation
uses
Windows, Messages, SysUtils, Classes, frxFIBComponents;
procedure Register;
begin
RegisterComponents('FastReport 4.0', [TfrxFIBComponents]);
end;
end.