1
0
Files
CPP_Module_05/ex02/RobotomyRequestForm.hpp
2025-04-03 14:34:21 +02:00

28 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* RobotomyRequestForm.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/02 16:13:39 by adjoly #+# #+# */
/* Updated: 2025/04/03 10:02:14 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "AForm.hpp"
class RobotomyRequestForm : public AForm {
public:
RobotomyRequestForm(void);
RobotomyRequestForm(const RobotomyRequestForm &);
RobotomyRequestForm(std::string &);
~RobotomyRequestForm(void);
RobotomyRequestForm &operator=(const RobotomyRequestForm &);
private:
void _exec(const Bureaucrat &) const;
};