1
0
Files
CPP_Module_05/ex02/ShrubberyCreationForm.hpp
2025-04-03 14:34:21 +02:00

31 lines
1.3 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ShrubberyCreationForm.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/01 09:19:24 by adjoly #+# #+# */
/* Updated: 2025/04/03 13:34:46 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#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;
};