/ CPP_Modules / CPP_Module_01 / ex01 / Zombie.hpp
Zombie.hpp
 1  /* ************************************************************************** */
 2  /*                                                                            */
 3  /*                                                        :::      ::::::::   */
 4  /*   Zombie.hpp                                         :+:      :+:    :+:   */
 5  /*                                                    +:+ +:+         +:+     */
 6  /*   By: gychoi <gychoi@student.42seoul.kr>         +#+  +:+       +#+        */
 7  /*                                                +#+#+#+#+#+   +#+           */
 8  /*   Created: 2023/07/24 22:45:56 by gychoi            #+#    #+#             */
 9  /*   Updated: 2023/07/25 18:55:55 by gychoi           ###   ########.fr       */
10  /*                                                                            */
11  /* ************************************************************************** */
12  
13  #pragma once
14  #ifndef __ZOMBIE_H__
15  #define __ZOMBIE_H__
16  
17  #include <iostream>
18  #include <limits>
19  #include <sstream>
20  #include <string>
21  
22  class	Zombie
23  {
24  	public:
25  		~Zombie();
26  		void		announce(void);
27  		void		setName(const std::string& name);
28  		std::string	getName(void) const;
29  
30  	private:
31  		std::string	_name;
32  };
33  
34  Zombie*	zombieHorde(int N, std::string name);
35  
36  #endif