2013-02-25 17:23:08 +00:00
|
|
|
{ This file was automatically created by Lazarus. Do not edit!
|
|
|
|
This source is only used to compile and install the package.
|
|
|
|
}
|
|
|
|
|
|
|
|
unit rx_sort_sqldb;
|
|
|
|
|
2016-03-09 08:29:44 +00:00
|
|
|
{$warn 5023 off : no warning about unused units}
|
2013-02-25 17:23:08 +00:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2017-01-26 06:05:07 +00:00
|
|
|
RxSortSqlDB, exsortsql, LazarusPackageIntf;
|
2013-02-25 17:23:08 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
|
|
|
RegisterUnit('RxSortSqlDB', @RxSortSqlDB.Register);
|
|
|
|
end;
|
|
|
|
|
|
|
|
initialization
|
|
|
|
RegisterPackage('rx_sort_sqldb', @Register);
|
|
|
|
end.
|