lazarus/components/ideextensions/ideextensions.pas
martin b156ecfcab Adding special ide components
git-svn-id: trunk@25482 -
2010-05-17 14:56:10 +00:00

22 lines
377 B
ObjectPascal

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