2012-09-27 14:27:35 +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_zeos;
|
|
|
|
|
2016-03-09 08:29:44 +00:00
|
|
|
{$warn 5023 off : no warning about unused units}
|
2012-09-27 14:27:35 +00:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2017-01-26 06:05:07 +00:00
|
|
|
exsortzeos, RxSortZeos, LazarusPackageIntf;
|
2012-09-27 14:27:35 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
|
|
|
RegisterUnit('RxSortZeos', @RxSortZeos.Register);
|
|
|
|
end;
|
|
|
|
|
|
|
|
initialization
|
|
|
|
RegisterPackage('rx_sort_zeos', @Register);
|
|
|
|
end.
|