#ifndef ZOMBIE_HPP #define ZOMBIE_HPP #include class Zombie { public: Zombie(std::string name); ~Zombie(); void announce(void); private: std::string name; }; Zombie *newZombie(std::string name); void randomChump(std::string name); #endif