Files
42_INT_09_piscine_cpp/d01/ex01/Zombie.hpp
2022-02-05 17:11:24 +01:00

24 lines
231 B
C++

#ifndef ZOMBIE_HPP
# define ZOMBIE_HPP
#include <iostream>
#include <string>
class Zombie {
public:
Zombie();
~Zombie();
void announce( void );
void put_name( std::string name );
private:
std::string _name;
};
#endif