lazarus/components/lazsvnpkg/lazsvnpkg.pas
darius 373eada5b8 initial import of the Lazarus SVN IDE plugin
documentation will be collected here: http://wiki.lazarus.freepascal.org/LazSVNPkg

git-svn-id: trunk@17160 -
2008-10-31 00:11:04 +00:00

23 lines
468 B
ObjectPascal

{ This file was automatically created by Lazarus. do not edit!
This source is only used to compile and install the package.
}
unit lazsvnpkg;
interface
uses
SVNLogForm, SVNUpdateForm, SVNDiffForm, SVNSettingsForm, SVNClasses,
SVNStatusForm, SVNCommitForm, LazSVNIntf, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('LazSVNIntf', @LazSVNIntf.Register);
end;
initialization
RegisterPackage('lazsvnpkg', @Register);
end.