cpp-partie-1/cpp01/ex00/Zombie.hpp
2024-02-20 15:35:19 +01:00

34 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Zombie.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/24 13:23:44 by fgras-ca #+# #+# */
/* Updated: 2023/12/24 13:30:20 by fgras-ca ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef ZOMBIE_HPP
# define ZOMBIE_HPP
#include <iostream>
class Zombie
{
public:
Zombie(void);
~Zombie(void);
void announce(void);
void setname(std::string name);
private:
std::string name;
};
Zombie* newZombie(std::string name);
void randomChump(std::string name);
#endif