tw1798.pp 258 B

1234567891011121314151617181920212223242526
  1. {$ifdef fpc}{$mode objfpc}{$endif}
  2. type
  3. TGraphicControl = class
  4. end;
  5. TButton = class
  6. end;
  7. TBitBtn = class(TButton)
  8. private
  9. published
  10. end;
  11. TSpeedButton = class(TGraphicControl)
  12. published
  13. end;
  14. TMyButton = class(TBitBtn);
  15. const MyConst = 1;
  16. begin
  17. end.