Files
42_INT_09_piscine_cpp/d05/ex02/headers/ShrubberyCreationForm.hpp
2022-03-05 15:59:52 +01:00

29 lines
512 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;
private:
ShrubberyCreationForm();
};
#endif