lazarus/components/tdbf/dbflaz.pas
mattias 1201d2e3ab components: less hints
git-svn-id: trunk@51778 -
2016-03-01 15:22:29 +00:00

23 lines
412 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit DBFLaz;
{$warn 5023 off : no warning about unused units}
interface
uses
RegisterDBF, Dbf, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('RegisterDBF', @RegisterDBF.Register);
end;
initialization
RegisterPackage('DBFLaz', @Register);
end.