1
0
Files
CPP_Module_05/ex03/PresidentialPardonForm.hpp
2025-04-03 16:07:05 +02:00

29 lines
1.3 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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;
};