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