blob: 2d57a059630448393048b3fd79a541e68bda3bd5 (
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
33
34
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Peon.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 20:50:54 by charles #+# #+# */
/* Updated: 2020/04/13 20:57:37 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PEON_HPP
# define PEON_HPP
# include <string>
# include <iostream>
# include "Victim.hpp"
class Peon : public Victim
{
public:
Peon(std::string name);
void operator=(Peon const& other);
Peon(Peon const& other);
~Peon();
virtual void getPolymorphed() const;
private:
Peon();
};
#endif
|