lazarus/components/packagetabs/packagetabs.pas
2015-12-12 15:11:27 +00:00

22 lines
399 B
ObjectPascal

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