cpp/CPP05/ex03/RobotomyRequestForm.hpp
2024-12-04 17:29:31 +01:00

12 lines
186 B
C++

#pragma once
#include "AForm.hpp"
class RobotomyRequestAForm : public AForm {
public :
RobotomyRequestAForm();
RobotomyRequestAForm(std::string name);
void executeAction();
};