lazarus/components/packagetabs/packagetabs.pas
ondrej 109f61cbec packagetabs: Added packagetabs package.
git-svn-id: trunk@50494 -
2015-11-24 11:32:10 +00:00

22 lines
383 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, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('packagetabs_impl', @packagetabs_impl.Register);
end;
initialization
RegisterPackage('packagetabs', @Register);
end.