/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* RobotomyRequestForm.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/02/20 16:55:26 by fgras-ca #+# #+# */ /* Updated: 2024/02/20 16:56:11 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ROBOTOMYREQUESTFORM_HPP #define ROBOTOMYREQUESTFORM_HPP #include "AForm.hpp" #include // Pour rand() class RobotomyRequestForm : public AForm { public: RobotomyRequestForm(const std::string& target); RobotomyRequestForm(const RobotomyRequestForm& other); RobotomyRequestForm& operator=(const RobotomyRequestForm& other); virtual ~RobotomyRequestForm(); void execute(Bureaucrat const &executor) const override; }; #endif