/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* PresidentialPardonForm.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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; };