1
0

」 feat: finished ex03

This commit is contained in:
2025-04-03 16:07:05 +02:00
parent bb8d13b9ed
commit bd578ea11e
17 changed files with 811 additions and 5 deletions

View File

@ -0,0 +1,28 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* PresidentialPardonForm.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/03 09:44:16 by adjoly #+# #+# */
/* Updated: 2025/04/03 14:04:03 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "Bureaucrat.hpp"
#include "AForm.hpp"
class PresidentialPardonForm : public AForm {
public:
PresidentialPardonForm(void);
PresidentialPardonForm(const PresidentialPardonForm &);
PresidentialPardonForm(std::string &);
~PresidentialPardonForm(void);
PresidentialPardonForm &operator=(const PresidentialPardonForm &);
private:
void _exec(const Bureaucrat &) const;
};