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

18 lines
172 B
ObjectPascal

unit uw3450;
{$mode objfpc}{$H+}
interface
type
TA=class
private
FI: Integer;
protected
property I: Integer read FI write FI;
end;
implementation
end.