19 lines
245 B
C++
19 lines
245 B
C++
#include <string>
|
|
|
|
class Zombie {
|
|
|
|
private:
|
|
std::string name;
|
|
|
|
public:
|
|
Zombie(std::string name);
|
|
Zombie();
|
|
~Zombie();
|
|
|
|
void setName(std::string name);
|
|
void announce(void) const;
|
|
|
|
};
|
|
|
|
Zombie* zombieHorde(int N, std::string name);
|