/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* PresidentialPardonForm.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/30 15:05:32 by bchanot #+# #+# */ /* Updated: 2025/12/30 17:37:45 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef PRESIDENTIALPARDONFORM_HPP # define PRESIDENTIALPARDONFORM_HPP # include # include # include "AForm.hpp" class PresidentialPardonForm : public AForm { public: PresidentialPardonForm(); PresidentialPardonForm( PresidentialPardonForm const & src ); PresidentialPardonForm( std::string const & target ); ~PresidentialPardonForm(); PresidentialPardonForm & operator=( PresidentialPardonForm const & rhs ); protected: virtual void action(void) const; }; std::ostream & operator<<( std::ostream & o, PresidentialPardonForm const & i ); #endif /* ******************************************* PRESIDENTIALPARDONFORM_H */