19 lines
405 B
C++
19 lines
405 B
C++
#pragma once
|
|
|
|
#include "AForm.hpp"
|
|
#include <cerrno>
|
|
#include <string>
|
|
|
|
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;
|
|
};
|
|
|