「🎉」 init: hello world !
This commit is contained in:
18
ex03/ShrubberyCreationForm.hpp
Normal file
18
ex03/ShrubberyCreationForm.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user