#pragma once #include "AForm.hpp" #include #include class ShrubberyCreationForm : public AForm { public: ShrubberyCreationForm(void); ShrubberyCreationForm(const ShrubberyCreationForm &); ShrubberyCreationForm(std::string); ~ShrubberyCreationForm(void); ShrubberyCreationForm &operator=(const ShrubberyCreationForm &); private: void _exec(const Bureaucrat &) const; };