Files
lazarus-ccr/components/jvcllaz/packages/JvXPBarReg.pp
ssamayoa f8cb554d29 Initial import.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@272 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-09-29 00:59:44 +00:00

25 lines
259 B
ObjectPascal

unit JvXPBarReg;
{$mode objfpc}{$H+}
interface
uses
Classes, LResources, SysUtils;
procedure Register;
implementation
uses JvXPBar;
procedure Register;
begin
RegisterComponents('JvXP',[TJvXPBar]);
end;
initialization
{$I JvXPBarLaz.lrs}
end.