/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/14 08:02:30 by narnaud #+# #+# */ /* Updated: 2022/06/14 09:49:11 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ZOMBIE_HPP # define ZOMBIE_HPP # ifndef DEBUG # define DEBUG 0 # endif #include #include using std::cin; using std::cout; using std::string; class Zombie { public: Zombie(string name); ~Zombie(); void announce(void) const; private: string _name; }; Zombie *newZombie(string name); void randomChump(string name); #endif