lazarus/components/favorites/favorites.pas
2015-11-27 05:37:01 +00:00

22 lines
373 B
ObjectPascal

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