uw3450.pp 172 B

1234567891011121314151617
  1. unit uw3450;
  2. {$mode objfpc}{$H+}
  3. interface
  4. type
  5. TA=class
  6. private
  7. FI: Integer;
  8. protected
  9. property I: Integer read FI write FI;
  10. end;
  11. implementation
  12. end.