lazarus/components/rx/rx.pas
mattias 2f8201d816 added rx components from Michal Van Canneyt
git-svn-id: trunk@5709 -
2004-07-25 15:39:55 +00:00

24 lines
435 B
ObjectPascal

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