summaryrefslogtreecommitdiff
path: root/ex01/Zombie.hpp
diff options
context:
space:
mode:
authorDominik Kaiser2025-02-10 11:13:16 +0100
committerDominik Kaiser2025-02-10 11:13:16 +0100
commit63f6707447e8377e21b074cab69ad03f019afe9b (patch)
treea30fe9f1f2fcd78f1a096aeb7c17068388292f9e /ex01/Zombie.hpp
parentc5cac15c8c9f9bae331f22efd6d6390325a7421c (diff)
downloadcpp01-63f6707447e8377e21b074cab69ad03f019afe9b.tar.gz
cpp01-63f6707447e8377e21b074cab69ad03f019afe9b.zip
Setup ex01
Diffstat (limited to 'ex01/Zombie.hpp')
-rw-r--r--ex01/Zombie.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/ex01/Zombie.hpp b/ex01/Zombie.hpp
new file mode 100644
index 0000000..5c96e80
--- /dev/null
+++ b/ex01/Zombie.hpp
@@ -0,0 +1,30 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* Zombie.hpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2025/02/10 10:26:18 by dkaiser #+# #+# */
+/* Updated: 2025/02/10 11:12:29 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;
+};
+
+Zombie* zombieHorde(int N, std::string name);
+
+#endif