lazarus/examples/dockmanager/package/easydockmgr.pas
dodi 91ccba3b91 dockmanager example: restructure package
git-svn-id: trunk@22697 -
2009-11-21 13:08:42 +00:00

23 lines
458 B
ObjectPascal

{ This file was automatically created by Lazarus. do not edit!
This source is only used to compile and install the package.
}
unit EasyDockMgr;
interface
uses
EasyDockSite, fDockBook, fFloatingSite, fElasticSite, uMiniRestore,
fPageFrame, uMakeSite, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('fElasticSite', @fElasticSite.Register);
end;
initialization
RegisterPackage('EasyDockMgr', @Register);
end.