/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* RobotomyRequestForm.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/10/19 13:43:37 by cacharle #+# #+# */ /* Updated: 2020/12/12 12:46:46 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ROBOTOMYREQUESTFORM_HPP # define ROBOTOMYREQUESTFORM_HPP # include # include "Form.hpp" class RobotomyRequestForm : public Form { public: RobotomyRequestForm(const RobotomyRequestForm& other); RobotomyRequestForm& operator=(const RobotomyRequestForm& other); virtual ~RobotomyRequestForm(); RobotomyRequestForm(std::string const& target); private: RobotomyRequestForm(); virtual void executeUnsafe() const; std::string m_target; }; #endif