aboutsummaryrefslogtreecommitdiff
path: root/cpp05/ex02/PresidentialPardonFrom.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp05/ex02/PresidentialPardonFrom.hpp')
-rw-r--r--cpp05/ex02/PresidentialPardonFrom.hpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/cpp05/ex02/PresidentialPardonFrom.hpp b/cpp05/ex02/PresidentialPardonFrom.hpp
new file mode 100644
index 0000000..7f86d29
--- /dev/null
+++ b/cpp05/ex02/PresidentialPardonFrom.hpp
@@ -0,0 +1,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