Files
lazarus-ccr/components/rx/trunk/rx_sort_ibx.pas
alexs75 c0f254ae83 RxFPC:add RxDBGrid sort engine for IBX
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6154 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2018-01-29 11:34:23 +00:00

23 lines
422 B
ObjectPascal

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