repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduce pet-projects dir
[lcapit-junk-code.git]
/
object-counter
/
cpp
/
person.h
blob
a0ae56e1497ca03b9b2c9fcacf80531beb97442c
1
#ifndef PERSON_H
2
#define PERSON_H
3
4
class
Person
5
{
6
private
:
7
int
idade
;
8
static int
count
;
9
10
public
:
11
bool
set_idade
(
int
value
);
12
int
get_idade
(
void
);
13
static int
get_count
(
void
);
14
Person
(
void
);
15
~
Person
(
void
);
16
};
17
18
#endif
/* PERSON_H */