lazarus/components/idespotter/idespotter.pas
2018-09-23 11:03:26 +00:00

23 lines
452 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit idespotter;
{$warn 5023 off : no warning about unused units}
interface
uses
RegIDESpotter, frmspotter, IDESPotterOptions, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('RegIDESpotter', @RegIDESpotter.Register);
end;
initialization
RegisterPackage('idespotter', @Register);
end.