lazarus/components/sqlite/sqlitedslaz.pas
vincents 716352928c added table editor from Luiz Am�rico
git-svn-id: trunk@7201 -
2005-05-25 08:33:34 +00:00

22 lines
386 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit sqlitedslaz;
interface
uses
sqliteds, tableeditorform, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('tableeditorform',@tableeditorform.Register);
end;
initialization
RegisterPackage('sqlitedslaz',@Register);
end.