Introduce pet-projects dir
[lcapit-junk-code.git] / object-counter / cpp / person.h
bloba0ae56e1497ca03b9b2c9fcacf80531beb97442c
1 #ifndef PERSON_H
2 #define PERSON_H
4 class Person
6 private:
7 int idade;
8 static int count;
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);
18 #endif /* PERSON_H */