1
0

」 feat: finished ex02

This commit is contained in:
2025-04-03 14:34:21 +02:00
parent 9e85ca79d9
commit bb8d13b9ed
13 changed files with 238 additions and 22 deletions

View File

@ -6,18 +6,24 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/01 09:19:24 by adjoly #+# #+# */
/* Updated: 2025/04/01 10:18:36 by adjoly ### ########.fr */
/* 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;
};