/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Zombie.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dkaiser class Zombie { public: Zombie(void); Zombie(const std::string &name); ~Zombie(void); void announce(void); void setName(const std::string &name); private: std::string name; }; Zombie* zombieHorde(int N, std::string name); #endif