mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-14 12:12:41 +02:00
25 lines
613 B
ObjectPascal
25 lines
613 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit lazreport;
|
|
|
|
interface
|
|
|
|
uses
|
|
LR_Class, LR_Desgn, LR_Register, LR_Flds, LR_DBSet, LR_BarC, LR_BndEd,
|
|
LR_PGrid, LR_View, lr_expres, lr_funct_editor_unit, lr_funct_editor_unit1,
|
|
LR_Prntr, LR_Edit, LR_Pars, LR_fmted, LR_Const, LR_pgopt, LR_Dopt,
|
|
LR_GEdit, LR_Utils, LR_GrpEd, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('LR_Register', @LR_Register.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('lazreport', @Register);
|
|
end.
|