aboutsummaryrefslogtreecommitdiff
path: root/cpp05/ex03/ShrubberyCreationForm.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/ex03/ShrubberyCreationForm.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/ex03/ShrubberyCreationForm.hpp')
-rw-r--r--cpp05/ex03/ShrubberyCreationForm.hpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/cpp05/ex03/ShrubberyCreationForm.hpp b/cpp05/ex03/ShrubberyCreationForm.hpp
new file mode 100644
index 0000000..4799d9d
--- /dev/null
+++ b/cpp05/ex03/ShrubberyCreationForm.hpp
@@ -0,0 +1,38 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ShrubberyCreationForm.hpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/10/19 13:43:27 by cacharle #+# #+# */
+/* Updated: 2020/11/17 16:37:56 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef SHRUBBERYCREATIONFORM_HPP
+# define SHRUBBERYCREATIONFORM_HPP
+
+# include <string>
+# include <cstring>
+# include <fstream>
+# include <iostream>
+# include "Form.hpp"
+
+class ShrubberyCreationForm : public Form
+{
+public:
+ ShrubberyCreationForm(const ShrubberyCreationForm& other);
+ ShrubberyCreationForm& operator=(const ShrubberyCreationForm& other);
+ ~ShrubberyCreationForm();
+
+ ShrubberyCreationForm(std::string const& target);
+
+private:
+ ShrubberyCreationForm();
+ virtual void executeUnsafe() const;
+
+ std::string m_target;
+};
+
+#endif