| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* RobotomyRequestForm.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* 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 <iostream>
- # include <string>
- # 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 */
|