RobotomyRequestForm.hpp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* RobotomyRequestForm.hpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2025/12/30 15:05:32 by bchanot #+# #+# */
  9. /* Updated: 2025/12/30 16:58:14 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef ROBOTOMYREQUESTFORM_HPP
  13. # define ROBOTOMYREQUESTFORM_HPP
  14. # include <iostream>
  15. # include <string>
  16. # include "AForm.hpp"
  17. class RobotomyRequestForm : public AForm
  18. {
  19. public:
  20. RobotomyRequestForm();
  21. RobotomyRequestForm( RobotomyRequestForm const & src );
  22. RobotomyRequestForm( std::string const & target );
  23. ~RobotomyRequestForm();
  24. RobotomyRequestForm & operator=( RobotomyRequestForm const & rhs );
  25. protected:
  26. virtual void action(void) const;
  27. };
  28. std::ostream & operator<<( std::ostream & o, RobotomyRequestForm const & i );
  29. #endif /* ******************************************* ROBOTOMYREQUESTFORM_H */