cpp/CPP05/ex03/Intern.hpp
2024-12-04 17:29:31 +01:00

16 lines
345 B
C++

#pragma once
#include "AForm.hpp"
#include "ShrubberyCreationForm.hpp"
#include "RobotomyRequestForm.hpp"
#include "PresidentialPardonForm.hpp"
class Intern {
public:
Intern();
Intern(const Intern &intern);
~Intern();
Intern &operator=(const Intern &intern);
AForm *makeAForm(const std::string &name, const std::string &target);
};