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.hpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/cpp05/ex02/PresidentialPardonFrom.hpp b/cpp05/ex02/PresidentialPardonFrom.hpp
index 7f86d29..3993685 100644
--- a/cpp05/ex02/PresidentialPardonFrom.hpp
+++ b/cpp05/ex02/PresidentialPardonFrom.hpp
@@ -6,7 +6,7 @@
/* By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/10/19 13:42:46 by cacharle #+# #+# */
-/* Updated: 2020/10/19 13:44:33 by cacharle ### ########.fr */
+/* Updated: 2020/11/17 12:57:57 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -18,12 +18,17 @@
class PresidentialPardonFrom : public Form
{
public:
- PresidentialPardonFrom();
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