aboutsummaryrefslogtreecommitdiff
path: root/cpp05/ex02/PresidentialPardonFrom.hpp
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-11-17 19:02:35 +0100
committerCharles Cabergs <me@cacharle.xyz>2020-11-17 19:02:35 +0100
commit452e6bfa7bb4bca75dc4659bf9d707101b411977 (patch)
treef4ee27a96437d6d17a89bbbbc135ae45f9f3faae /cpp05/ex02/PresidentialPardonFrom.hpp
parenta92013c92bfcd50b0e2561280c9eaa604843ade0 (diff)
downloadpiscine_cpp-452e6bfa7bb4bca75dc4659bf9d707101b411977.tar.gz
piscine_cpp-452e6bfa7bb4bca75dc4659bf9d707101b411977.tar.bz2
piscine_cpp-452e6bfa7bb4bca75dc4659bf9d707101b411977.zip
Added cpp05/ex02 main, Added cpp05/ex03
Diffstat (limited to 'cpp05/ex02/PresidentialPardonFrom.hpp')
-rw-r--r--cpp05/ex02/PresidentialPardonFrom.hpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/cpp05/ex02/PresidentialPardonFrom.hpp b/cpp05/ex02/PresidentialPardonFrom.hpp
deleted file mode 100644
index 3993685..0000000
--- a/cpp05/ex02/PresidentialPardonFrom.hpp
+++ /dev/null
@@ -1,34 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* 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