mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 02:34:03 +02:00
24 lines
536 B
ObjectPascal
24 lines
536 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit LazControls;
|
|
|
|
interface
|
|
|
|
uses
|
|
DividerBevel, ExtendedNotebook, ListFilterEdit, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('DividerBevel', @DividerBevel.Register);
|
|
RegisterUnit('ExtendedNotebook', @ExtendedNotebook.Register);
|
|
RegisterUnit('ListFilterEdit', @ListFilterEdit.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('LazControls', @Register);
|
|
end.
|