Componentes.Terceros.FastRe.../internal/4.2/1/Source/FIB/frxFIBReg.pas
2007-11-18 19:40:07 +00:00

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.