/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* PresidentialPardonForm.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/10/19 13:42:46 by cacharle #+# #+# */ /* Updated: 2020/12/12 12:09:43 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef PRESIDENTIALPARDONFORM_HPP # define PRESIDENTIALPARDONFORM_HPP # include "Form.hpp" class PresidentialPardonForm : public Form { public: PresidentialPardonForm(const PresidentialPardonForm& other); PresidentialPardonForm& operator=(const PresidentialPardonForm& other); virtual ~PresidentialPardonForm(); PresidentialPardonForm(std::string const& target); private: PresidentialPardonForm(); virtual void executeUnsafe() const; std::string m_target; }; #endif