aboutsummaryrefslogtreecommitdiff
path: root/cpp05/ex02/RobotomyRequestForm.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp05/ex02/RobotomyRequestForm.hpp')
-rw-r--r--cpp05/ex02/RobotomyRequestForm.hpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/cpp05/ex02/RobotomyRequestForm.hpp b/cpp05/ex02/RobotomyRequestForm.hpp
index 5a722de..a851b04 100644
--- a/cpp05/ex02/RobotomyRequestForm.hpp
+++ b/cpp05/ex02/RobotomyRequestForm.hpp
@@ -6,7 +6,7 @@
/* By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/10/19 13:43:37 by cacharle #+# #+# */
-/* Updated: 2020/10/19 13:44:17 by cacharle ### ########.fr */
+/* Updated: 2020/11/17 13:27:32 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -18,12 +18,17 @@
class RobotomyRequestForm : public Form
{
public:
- RobotomyRequestForm();
RobotomyRequestForm(const RobotomyRequestForm& other);
RobotomyRequestForm& operator=(const RobotomyRequestForm& other);
~RobotomyRequestForm();
+ RobotomyRequestForm(std::string const& target);
+
private:
+ RobotomyRequestForm();
+ virtual void executeUnsafe() const;
+
+ std::string m_target;
};
#endif