Componentes.Terceros.SDAC/official/4.10.0.10/Demos/Win32/ThirdParty/FastReport/FR4/frxSDACReg.pas
2007-10-05 14:23:39 +00:00

39 lines
725 B
ObjectPascal

{******************************************}
{ }
{ FastReport v4.0 }
{ SDAC components registration }
{ }
// Created by: CoreLab
// E-mail: sdac@crlab.com
{ }
{******************************************}
unit frxSDACReg;
interface
{$I frx.inc}
procedure Register;
implementation
uses
Windows, Messages, SysUtils, Classes
{$IFNDEF Delphi6}
, DsgnIntf
{$ELSE}
, DesignIntf, DesignEditors
{$ENDIF}
, frxSDACComponents;
procedure Register;
begin
RegisterComponents('FastReport 4.0', [TfrxSDACComponents]);
end;
end.