Files
42_INT_09_piscine_cpp/d05/ex02/headers/ShrubberyCreationForm.hpp
2022-03-04 20:58:15 +01:00

33 lines
578 B
C++

#ifndef SHRUBBERYCREATIONFORM_HPP
# define SHRUBBERYCREATIONFORM_HPP
# include "color.h"
# include <iostream>
# include <string>
# include <fstream>
# include "AForm.hpp"
class ShrubberyCreationForm : public AForm {
public:
ShrubberyCreationForm( std::string target );
ShrubberyCreationForm( ShrubberyCreationForm const & src );
~ShrubberyCreationForm();
ShrubberyCreationForm & operator=( ShrubberyCreationForm const & rhs );
void formAction() const;
// std::string getTarget() const;
private:
ShrubberyCreationForm();
// std::string const _target;
};
#endif