2022-11-07 23:51:58 +00:00
|
|
|
{ This file was automatically created by Lazarus. Do not edit!
|
|
|
|
This source is only used to compile and install the package.
|
|
|
|
}
|
|
|
|
|
|
|
|
unit GridPrinterPkg;
|
|
|
|
|
|
|
|
{$warn 5023 off : no warning about unused units}
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
GridPrnHeaderFooterForm, GridPrn, GridPrnPreviewForm, GridPrnReg,
|
2022-11-09 16:14:31 +00:00
|
|
|
GridPrnPreviewDlg, GridPrnStrings, GridPrnActions, LazarusPackageIntf;
|
2022-11-07 23:51:58 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
|
|
|
RegisterUnit('GridPrnReg', @GridPrnReg.Register);
|
|
|
|
end;
|
|
|
|
|
|
|
|
initialization
|
|
|
|
RegisterPackage('GridPrinterPkg', @Register);
|
|
|
|
end.
|