23 lines
213 B
C++
23 lines
213 B
C++
#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
|