aboutsummaryrefslogtreecommitdiff
path: root/cpp03/ex02/ScavTrap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp03/ex02/ScavTrap.hpp')
-rw-r--r--cpp03/ex02/ScavTrap.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp03/ex02/ScavTrap.hpp b/cpp03/ex02/ScavTrap.hpp
index b1c162d..2ad165b 100644
--- a/cpp03/ex02/ScavTrap.hpp
+++ b/cpp03/ex02/ScavTrap.hpp
@@ -6,7 +6,7 @@
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 14:11:51 by charles #+# #+# */
-/* Updated: 2020/11/10 14:38:59 by cacharle ### ########.fr */
+/* Updated: 2020/11/12 08:45:12 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -19,13 +19,15 @@
class ScavTrap : public ClapTrap
{
public:
- ScavTrap();
ScavTrap(std::string const& name);
ScavTrap(ScavTrap const& other);
ScavTrap& operator=(ScavTrap const& other);
~ScavTrap();
void challengeNewcomer(std::string const& target);
+
+private:
+ ScavTrap();
};
#endif