/components/printers/design/printers4lazide.pas

http://github.com/graemeg/lazarus · Pascal · 22 lines · 12 code · 6 blank · 4 comment · 0 complexity · 8463ae8ce78d7eab621b41397418d52c MD5 · raw file

  1. { This file was automatically created by Lazarus. Do not edit!
  2. This source is only used to compile and install the package.
  3. }
  4. unit printers4lazide;
  5. {$warn 5023 off : no warning about unused units}
  6. interface
  7. uses
  8. ideprinting, SourcePrinter, LazarusPackageIntf;
  9. implementation
  10. procedure Register;
  11. begin
  12. RegisterUnit('ideprinting', @ideprinting.Register);
  13. end;
  14. initialization
  15. RegisterPackage('printers4lazide', @Register);
  16. end.