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.
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* PresidentialPardonForm.cpp :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2022/06/27 10:18:34 by narnaud #+# #+# */
|
|
|
|
/* Updated: 2022/06/27 14:43:58 by narnaud ### ########.fr */
|
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#include "PresidentialPardonForm.hpp"
|
|
|
|
|
|
|
|
PresidentialPardonForm::PresidentialPardonForm(const string target)
|
|
|
|
: Form("PresidentialPardonForm", 25, 5, target)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PresidentialPardonForm::~PresidentialPardonForm(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PresidentialPardonForm::run(void) const
|
|
|
|
{
|
|
|
|
cout << _target << "has been pardoned by Zaphod Beeblebrox" << endl;
|
|
|
|
}
|