Repository URL to install this package:
Version:
3.0.0 ▾
|
{$ifdef fpc}{$mode objfpc}{$endif}
type
TGraphicControl = class
end;
TButton = class
end;
TBitBtn = class(TButton)
private
published
end;
TSpeedButton = class(TGraphicControl)
published
end;
TMyButton = class(TBitBtn);
const MyConst = 1;
begin
end.