mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 07:28:26 +02:00
18 lines
172 B
ObjectPascal
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.
|