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