-
Notifications
You must be signed in to change notification settings - Fork 0
/
uPessoa.pas
57 lines (46 loc) · 950 Bytes
/
uPessoa.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
unit uPessoa;
interface
type
TPessoa = class
private
FNome: String;
FCpf: String;
FIdade: Integer;
procedure setNome(Value: String);
procedure setCpf(Value: String);
procedure setIdade(Value: Integer);
function getNome: String;
function getCpf: String;
function getIdade: Integer;
public
Property Nome: String read getNome write setNome;
Property Cpf: String read getCpf write setCpf;
Property Idade: Integer read getIdade write setIdade;
end;
implementation
{ TPessoa }
function TPessoa.getCpf: String;
begin
Result := FCpf;
end;
function TPessoa.getIdade: Integer;
begin
Result := FIdade;
end;
function TPessoa.getNome: String;
begin
Result := FNome;
end;
procedure TPessoa.setCpf(Value: String);
begin
FCpf := Value;
end;
procedure TPessoa.setIdade(Value: Integer);
begin
FIdade := Value;
end;
procedure TPessoa.setNome(Value: String);
begin
FNome := Value;
end;
end.