16 lines
352 B
C++
16 lines
352 B
C++
#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;
|
|
};
|