cpp01/ex01/Zombie.hpp

22 lines
280 B
C++
Raw Permalink Normal View History

2025-05-12 12:03:57 +02:00
#ifndef ZOMBIE_HPP
#define ZOMBIE_HPP
#include <string>
class Zombie {
public:
Zombie();
Zombie(std::string name);
~Zombie();
void announce(void);
void setName(std::string name);
private:
std::string name;
};
Zombie *zombieHorde(int n, std::string name);
#endif