Componentes.Terceros.SDAC/official/4.10.0.10/Demos/Win32/ThirdParty/FastReport/FR3/frxSDACReg.pas

39 lines
725 B
ObjectPascal
Raw Normal View History

{******************************************}
{ }
{ FastReport v3.20 }
{ 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 3.0', [TfrxSDACComponents]);
end;
end.