23 lines
496 B
C++
23 lines
496 B
C++
#ifndef PRESIDENTIALFORM_HPP
|
|
#define PRESIDENTIALFORM_HPP
|
|
|
|
#include "AForm.hpp"
|
|
#include <fstream>
|
|
|
|
class PresidentialPardonForm : public AForm
|
|
{
|
|
private:
|
|
std::string _target;
|
|
virtual void performAction() const;
|
|
|
|
public:
|
|
// Constructors
|
|
PresidentialPardonForm();
|
|
PresidentialPardonForm(const std::string target);
|
|
PresidentialPardonForm(const PresidentialPardonForm &other);
|
|
PresidentialPardonForm &operator=(const PresidentialPardonForm &other);
|
|
~PresidentialPardonForm();
|
|
};
|
|
|
|
#endif
|