summaryrefslogtreecommitdiff
path: root/ex01/Zombie.hpp
blob: 8f539d2ba484dbe2c8d93ad6a85f4dd23d5328d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   Zombie.hpp                                         :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: dkaiser <dkaiser@student.42heilbronn.de    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2025/02/10 10:26:18 by dkaiser           #+#    #+#             */
/*   Updated: 2025/02/10 11:33:02 by dkaiser          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef ZOMBIE_H_
#define ZOMBIE_H_

#include <string>

class Zombie
{
    public:
        Zombie(void);
        Zombie(const std::string &name);
        ~Zombie(void);
        void announce(void);
        void setName(const std::string &name);
    private:
        std::string name;
};

Zombie* zombieHorde(int N, std::string name);

#endif