aboutsummaryrefslogtreecommitdiff
path: root/cpp05/ex02/PresidentialPardonFrom.hpp
blob: 7f86d29aad08836f44bcdb82b094e5b6b4eb1e8a (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   PresidentialPardonFrom.hpp                         :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <me@cacharle.xyz>                 +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/10/19 13:42:46 by cacharle          #+#    #+#             */
/*   Updated: 2020/10/19 13:44:33 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef PRESIDENTIALPARDONFROM_HPP
# define PRESIDENTIALPARDONFROM_HPP

# include "Form.hpp"

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

private:
};

#endif