d01 ex00 ok
This commit is contained in:
22
d01/ex00/Zombie.hpp
Normal file
22
d01/ex00/Zombie.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef ZOMBIE_HPP
|
||||
# define ZOMBIE_HPP
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
class Zombie {
|
||||
|
||||
public:
|
||||
|
||||
Zombie( std::string name );
|
||||
~Zombie();
|
||||
|
||||
void announce( void );
|
||||
|
||||
private:
|
||||
|
||||
std::string _name;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user