diff options
| author | Dominik Kaiser | 2025-02-10 10:46:17 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-10 10:46:17 +0100 |
| commit | dc032706847335c7e76b26492725939318f5f84e (patch) | |
| tree | 97e162c79bc9f22bbb7df6f880eca7737f2f4c99 /ex00/Zombie.hpp | |
| parent | 0970deac9b22fce59751eb45ba2730bd7e195443 (diff) | |
| download | cpp01-dc032706847335c7e76b26492725939318f5f84e.tar.gz cpp01-dc032706847335c7e76b26492725939318f5f84e.zip | |
Add and implement Zombie class
Diffstat (limited to 'ex00/Zombie.hpp')
| -rw-r--r-- | ex00/Zombie.hpp | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/ex00/Zombie.hpp b/ex00/Zombie.hpp index f7dc6fe..c9f780f 100644 --- a/ex00/Zombie.hpp +++ b/ex00/Zombie.hpp @@ -6,7 +6,23 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/10 10:26:18 by dkaiser #+# #+# */ -/* Updated: 2025/02/10 10:26:19 by dkaiser ### ########.fr */ +/* Updated: 2025/02/10 10:38:18 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ +#ifndef ZOMBIE_H_ +#define ZOMBIE_H_ + +#include <string> + +class Zombie +{ + public: + Zombie(const std::string &name); + ~Zombie(void); + void announce(void); + private: + std::string name; +} + +#endif |
