blob: 8300459ca74e1c86a65c173c0c780ad4e0ac5a92 (
plain)
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Zombie.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 09:40:26 by charles #+# #+# */
/* Updated: 2020/11/09 12:53:45 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef ZOMBIE_HPP
# define ZOMBIE_HPP
# include <string>
class Zombie
{
public:
Zombie();
Zombie(std::string const& name, std::string const& type);
~Zombie();
void announce();
void setName(std::string const& name);
void setType(std::string const& type);
private:
std::string m_name;
std::string m_type;
};
#endif
|