-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRobotomyRequestForm.hpp
More file actions
35 lines (29 loc) · 1.37 KB
/
RobotomyRequestForm.hpp
File metadata and controls
35 lines (29 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* RobotomyRequestForm.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/26 13:39:50 by zelhajou #+# #+# */
/* Updated: 2024/12/30 16:37:05 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef ROBOTOMYREQUESTFORM_HPP
#define ROBOTOMYREQUESTFORM_HPP
#include "AForm.hpp"
#include <cstdlib>
#include <ctime>
class RobotomyRequestForm : public AForm
{
private:
const std::string _target;
public:
RobotomyRequestForm();
RobotomyRequestForm(const std::string &target);
RobotomyRequestForm(const RobotomyRequestForm &src);
~RobotomyRequestForm();
RobotomyRequestForm &operator=(const RobotomyRequestForm &src);
void execute(Bureaucrat const &executor) const;
};
#endif