mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 20:39:25 +02:00
26 lines
257 B
ObjectPascal
26 lines
257 B
ObjectPascal
{$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.
|