ub0366.pp 279 B

123456789101112131415161718192021
  1. {$ifdef fpc}{$mode objfpc}{$endif}
  2. unit ub0366;
  3. interface
  4. type
  5. tc1=class
  6. private
  7. FHeight : integer;
  8. public
  9. constructor Create;
  10. property Height : integer read FHeight write FHeight;
  11. end;
  12. implementation
  13. constructor tc1.Create;
  14. begin
  15. FHeight:=0;
  16. end;
  17. end.