lazarus-ccr/components/poweredby/poweredby.pas
gbamber 0b809fbbfd First commit
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3185 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2014-06-17 08:59:47 +00:00

23 lines
471 B
ObjectPascal

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