You've already forked lazarus-ccr
31 lines
441 B
ObjectPascal
31 lines
441 B
ObjectPascal
![]() |
unit RxDBTimeEdit;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
|
||
|
RxTimeEdit;
|
||
|
|
||
|
type
|
||
|
TCustomRxDBTimeEdit = class(TCustomRxTimeEdit)
|
||
|
private
|
||
|
{ Private declarations }
|
||
|
protected
|
||
|
{ Protected declarations }
|
||
|
public
|
||
|
{ Public declarations }
|
||
|
published
|
||
|
{ Published declarations }
|
||
|
end;
|
||
|
|
||
|
TRxDBTimeEdit = class(TCustomRxDBTimeEdit)
|
||
|
end;
|
||
|
|
||
|
|
||
|
implementation
|
||
|
|
||
|
|
||
|
end.
|