Files
lazarus-ccr/components/ZVDateTimeCtrls/trunk/zvdatetimecontrolsreg.pas
zoran-vucenovic 093e2b2102 ZVDateTimeCtrls initial import
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2503 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2012-09-05 00:32:23 +00:00

50 lines
1.1 KiB
ObjectPascal

{
ZVDateTimeControlsReg
- - - - - - - - - - - - - - - - - -
Author: Zoran Vučenović, January and February 2010
Зоран Вученовић, јануар и фебруар 2010.
This unit is part of ZVDateTimeCtrls package for Lazarus.
-----------------------------------------------------------
LICENCE
- - - -
Modified LGPL -- see the file COPYING.modifiedLGPL.
-----------------------------------------------------------
NO WARRANTY
- - - - - -
There is no warranty whatsoever.
-----------------------------------------------------------
BEST REGARDS TO LAZARUS COMMUNITY!
- - - - - - - - - - - - - - - - - -
I do hope the ZVDateTimeCtrls package will be useful.
}
unit ZVDateTimeControlsReg;
{$mode objfpc}{$H+}
interface
procedure Register;
implementation
uses
Classes, ZVDateTimePicker, DBZVDateTimePicker, LResources;
procedure Register;
begin
RegisterComponents('Date and Time Ctrls', [
TZVDateTimePicker,
TDBZVDateTimePicker
]);
end;
initialization
{$i zvdatetimectrls.lrs}
end.