2014-08-05 12:51:26 +00:00
|
|
|
{ This file was automatically created by Lazarus. Do not edit!
|
|
|
|
This source is only used to compile and install the package.
|
|
|
|
}
|
|
|
|
|
|
|
|
unit rxdbgrid_print;
|
|
|
|
|
2016-03-09 08:29:44 +00:00
|
|
|
{$warn 5023 off : no warning about unused units}
|
2014-08-05 12:51:26 +00:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2014-08-06 09:58:37 +00:00
|
|
|
RxDBGridPrintGrid, RxDBGridPrintGrid_SetupUnit, LazarusPackageIntf;
|
2014-08-05 12:51:26 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
|
|
|
RegisterUnit('RxDBGridPrintGrid', @RxDBGridPrintGrid.Register);
|
|
|
|
end;
|
|
|
|
|
|
|
|
initialization
|
|
|
|
RegisterPackage('rxdbgrid_print', @Register);
|
|
|
|
end.
|