doublecmd/components/KASToolBar/kascomp.pas
Alexander Koblov ab667f7acc Create SVN.
2007-02-08 19:46:07 +00:00

22 lines
439 B
ObjectPascal

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