You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
25 lines
1.1 KiB
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* RobotomyRequestForm.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/06/27 10:17:52 by narnaud #+# #+# */
|
|
/* Updated: 2022/06/27 14:45:20 by narnaud ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include "Form.hpp"
|
|
#include <time.h>
|
|
#include <algorithm>
|
|
|
|
class RobotomyRequestForm : public Form {
|
|
|
|
public:
|
|
RobotomyRequestForm(const string target);
|
|
~RobotomyRequestForm(void);
|
|
void run(void) const;
|
|
};
|
|
|