commit before leaving school, what did i do ? i don't know

This commit is contained in:
Hugo LAMY
2022-02-28 20:37:24 +01:00
parent 4946eb3b8c
commit 130b228a2f
10 changed files with 552 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
#ifndef SHRUBBERYCREATIONFORM_HPP
# define SHRUBBERYCREATIONFORM_HPP
# include "color.h"
# include <iostream>
# include <string>
# include "AForm.hpp"
class ShrubberyCreationForm : public AForm {
public:
ShrubberyCreationForm();
ShrubberyCreationForm( ShrubberyCreationForm const & src );
~ShrubberyCreationForm();
ShrubberyCreationForm & operator=( ShrubberyCreationForm const & rhs );
// std::string getFoo() const;
protected:
// std::string const _foo;
private:
// static std::string const ShrubberyCreationForm::_bar;
};
//std::ostream & operator<<(std::ostream & o, ShrubberyCreationForm const & rhs);
#endif