aboutsummaryrefslogtreecommitdiff
path: root/cpp03/ex04/FragTrap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp03/ex04/FragTrap.hpp')
-rw-r--r--cpp03/ex04/FragTrap.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp03/ex04/FragTrap.hpp b/cpp03/ex04/FragTrap.hpp
index 283b219..8e9de1b 100644
--- a/cpp03/ex04/FragTrap.hpp
+++ b/cpp03/ex04/FragTrap.hpp
@@ -6,26 +6,30 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/22 05:17:16 by cacharle #+# #+# */
-/* Updated: 2020/11/11 07:04:32 by cacharle ### ########.fr */
+/* Updated: 2020/11/12 09:14:11 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FRAGTRAP_HPP
# define FRAGTRAP_HPP
+# include <iostream>
+# include <string>
# include <cstdlib>
# include "ClapTrap.hpp"
class FragTrap : virtual public ClapTrap
{
public:
- FragTrap();
FragTrap(std::string const& name);
FragTrap(FragTrap const& other);
FragTrap& operator=(FragTrap const& other);
~FragTrap();
void vaulthunter_dot_exe(std::string const& target);
+
+protected:
+ FragTrap();
};
#endif