2011-07-22 18:48:22 +00:00
|
|
|
{ This file was automatically created by Lazarus. Do not edit!
|
|
|
|
This source is only used to compile and install the package.
|
|
|
|
}
|
|
|
|
|
2022-03-09 22:45:46 +00:00
|
|
|
unit lazbarcodes;
|
2011-07-22 18:48:22 +00:00
|
|
|
|
2022-03-09 22:45:46 +00:00
|
|
|
{$warn 5023 off : no warning about unused units}
|
2011-07-22 18:48:22 +00:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2022-03-09 22:45:46 +00:00
|
|
|
ubarcodes, udrawers, LazarusPackageIntf;
|
2011-07-22 18:48:22 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2022-03-09 22:45:46 +00:00
|
|
|
procedure Register;
|
2011-07-22 18:48:22 +00:00
|
|
|
begin
|
2022-03-09 22:45:46 +00:00
|
|
|
RegisterUnit('ubarcodes', @ubarcodes.Register);
|
|
|
|
end;
|
2011-07-22 18:48:22 +00:00
|
|
|
|
|
|
|
initialization
|
2022-03-09 22:45:46 +00:00
|
|
|
RegisterPackage('lazbarcodes', @Register);
|
2011-07-22 18:48:22 +00:00
|
|
|
end.
|