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.
 
 

23 lines
1.1 KiB

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* PresidentialPardonForm.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/27 10:18:34 by narnaud #+# #+# */
/* Updated: 2022/06/27 14:42:14 by narnaud ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "Form.hpp"
class PresidentialPardonForm : public Form {
public:
PresidentialPardonForm(const string target);
~PresidentialPardonForm(void);
void run(void) const;
};