cpp/cpp01/ex00/Zombie.hpp
2022-06-10 14:06:20 +02:00

32 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Zombie.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/08 16:30:22 by apommier #+# #+# */
/* Updated: 2022/06/10 13:22:55 by apommier ### ########.fr */
/* */
/* ************************************************************************** */
# include <string>
# include <iostream>
class Zombie {
public:
Zombie(std::string name);
~Zombie(void);
void announce( void );
private:
std::string _name;
};
void randomChump(std::string name);
Zombie *newZombie(std::string name);