| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* PresidentialPardonForm.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* 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 <iostream>
- # include <string>
- # 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 */
|