blob: 2ad165bc4cff897c8dd536c6d3ca02ac5b441f13 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ScavTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 14:11:51 by charles #+# #+# */
/* Updated: 2020/11/12 08:45:12 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef SCAVTRAP_HPP
# define SCAVTRAP_HPP
# include <cstdlib>
# include "ClapTrap.hpp"
class ScavTrap : public ClapTrap
{
public:
ScavTrap(std::string const& name);
ScavTrap(ScavTrap const& other);
ScavTrap& operator=(ScavTrap const& other);
~ScavTrap();
void challengeNewcomer(std::string const& target);
private:
ScavTrap();
};
#endif
|