lazarus/components/IdeInspector/ideinspector.pas
2010-10-20 05:40:36 +00:00

22 lines
381 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit IdeInspector;
interface
uses
MainInspector, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('MainInspector', @MainInspector.Register);
end;
initialization
RegisterPackage('IdeInspector', @Register);
end.