d05 ex02 ok pour Shrubbery form

This commit is contained in:
hugogogo
2022-03-04 20:58:15 +01:00
parent 130b228a2f
commit 0a5827f3a1
14 changed files with 297 additions and 194 deletions

View File

@@ -4,6 +4,7 @@
# include "color.h"
# include <iostream>
# include <string>
# include <fstream>
# include "AForm.hpp"
@@ -11,24 +12,21 @@ class ShrubberyCreationForm : public AForm {
public:
ShrubberyCreationForm();
ShrubberyCreationForm( std::string target );
ShrubberyCreationForm( ShrubberyCreationForm const & src );
~ShrubberyCreationForm();
ShrubberyCreationForm & operator=( ShrubberyCreationForm const & rhs );
// std::string getFoo() const;
void formAction() const;
protected:
// std::string const _foo;
// std::string getTarget() const;
private:
// static std::string const ShrubberyCreationForm::_bar;
ShrubberyCreationForm();
// std::string const _target;
};
//std::ostream & operator<<(std::ostream & o, ShrubberyCreationForm const & rhs);
#endif