/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* RobotomyRequestForm.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/30 15:05:32 by bchanot #+# #+# */ /* Updated: 2025/12/30 16:58:14 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef ROBOTOMYREQUESTFORM_HPP # define ROBOTOMYREQUESTFORM_HPP # include # include # include "AForm.hpp" class RobotomyRequestForm : public AForm { public: RobotomyRequestForm(); RobotomyRequestForm( RobotomyRequestForm const & src ); RobotomyRequestForm( std::string const & target ); ~RobotomyRequestForm(); RobotomyRequestForm & operator=( RobotomyRequestForm const & rhs ); protected: virtual void action(void) const; }; std::ostream & operator<<( std::ostream & o, RobotomyRequestForm const & i ); #endif /* ******************************************* ROBOTOMYREQUESTFORM_H */