fpc/tests/webtbs/tw1798.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

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.