aboutsummaryrefslogtreecommitdiff
path: root/cpp05/ex02/PresidentialPardonFrom.hpp
blob: 39936851081117f788221bbe129f1a4eb6f1ac4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   PresidentialPardonFrom.hpp                         :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <me@cacharle.xyz>                 +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/10/19 13:42:46 by cacharle          #+#    #+#             */
/*   Updated: 2020/11/17 12:57:57 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef PRESIDENTIALPARDONFROM_HPP
# define PRESIDENTIALPARDONFROM_HPP

# include "Form.hpp"

class PresidentialPardonFrom : public Form
{
public:
    PresidentialPardonFrom(const PresidentialPardonFrom& other);
    PresidentialPardonFrom& operator=(const PresidentialPardonFrom& other);
    ~PresidentialPardonFrom();

    PresidentialPardonFrom(std::string const& target);

private:
    PresidentialPardonFrom();
    virtual void executeUnsafe() const;

    std::string m_target;
};

#endif