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