🎉」 init: hello world !

This commit is contained in:
2025-08-02 13:51:40 +02:00
commit 224ed0cf99
44 changed files with 2108 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "AForm.hpp"
class RobotomyRequestForm : public AForm {
public:
RobotomyRequestForm(void);
RobotomyRequestForm(const RobotomyRequestForm &);
RobotomyRequestForm(std::string);
~RobotomyRequestForm(void);
RobotomyRequestForm &operator=(const RobotomyRequestForm &);
private:
void _exec(const Bureaucrat &) const;
};