12 lines
189 B
C++
12 lines
189 B
C++
#pragma once
|
|
|
|
#include "AForm.hpp"
|
|
|
|
class RobotomyRequestForm : public AForm {
|
|
public :
|
|
RobotomyRequestForm();
|
|
RobotomyRequestForm(std::string name);
|
|
|
|
void executeAction() const;
|
|
};
|