From 7d6a4c877de8048ec5fbea4a563b3d09c8976105 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 12 Jan 2020 20:20:12 +0100 Subject: cpp01 00 -> 04 --- cpp01/ex02/Zombie.hpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cpp01/ex02/Zombie.hpp (limited to 'cpp01/ex02/Zombie.hpp') diff --git a/cpp01/ex02/Zombie.hpp b/cpp01/ex02/Zombie.hpp new file mode 100644 index 0000000..980ea49 --- /dev/null +++ b/cpp01/ex02/Zombie.hpp @@ -0,0 +1,17 @@ +#ifndef ZOMBIE_HPP +# define ZOMBIE_HPP + +#include + +class Zombie +{ + public: + Zombie(std::string n, std::string t); + void announce(); + + private: + std::string name; + std::string type; +}; + +#endif -- cgit