mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-10 03:57:27 +01:00
45 lines
1.3 KiB
ObjectPascal
45 lines
1.3 KiB
ObjectPascal
{ $Id$ }
|
|
{
|
|
*****************************************************************************
|
|
* *
|
|
* See the file COPYING.modifiedLGPL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
Author: Michael Van Canneyt
|
|
|
|
This unit registers the TSDFDataset/TFixedFormatDataset components of the FCL.
|
|
}
|
|
unit RegisterSDF;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, LResources, sdfdata, LazarusPackageIntf;
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
|
|
procedure RegisterUnitSDF;
|
|
begin
|
|
RegisterComponents('Data Access',[TSDFDataset,TFixedFormatDataSet]);
|
|
end;
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('sdfdata',@RegisterUnitSDF);
|
|
end;
|
|
|
|
initialization
|
|
{$i registersdf.lrs}
|
|
|
|
end.
|