33 lines
578 B
C++
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
|
|
|