PresidentialPardonForm.hpp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* PresidentialPardonForm.hpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2025/12/30 15:05:32 by bchanot #+# #+# */
  9. /* Updated: 2025/12/30 17:37:45 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef PRESIDENTIALPARDONFORM_HPP
  13. # define PRESIDENTIALPARDONFORM_HPP
  14. # include <iostream>
  15. # include <string>
  16. # include "AForm.hpp"
  17. class PresidentialPardonForm : public AForm
  18. {
  19. public:
  20. PresidentialPardonForm();
  21. PresidentialPardonForm( PresidentialPardonForm const & src );
  22. PresidentialPardonForm( std::string const & target );
  23. ~PresidentialPardonForm();
  24. PresidentialPardonForm & operator=( PresidentialPardonForm const & rhs );
  25. protected:
  26. virtual void action(void) const;
  27. };
  28. std::ostream & operator<<( std::ostream & o, PresidentialPardonForm const & i );
  29. #endif /* ******************************************* PRESIDENTIALPARDONFORM_H */