GridPrinter: Initial commit

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8591 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2022-11-07 23:51:58 +00:00
parent c6ec271952
commit c44066ae41
39 changed files with 5751 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ 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,
GridPrnPreviewDlg, GridPrnStrings, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('GridPrnReg', @GridPrnReg.Register);
end;
initialization
RegisterPackage('GridPrinterPkg', @Register);
end.