cpp/cpp05/ex03/Intern.hpp
2022-08-05 15:39:46 +02:00

27 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Intern.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/05 02:25:32 by apommier #+# #+# */
/* Updated: 2022/08/05 11:12:21 by apommier ### ########.fr */
/* */
/* ************************************************************************** */
#include "AForm.hpp"
#include "PresidentialPardonForm.hpp"
#include "RobotomyRequestForm.hpp"
#include "ShrubberyCreationForm.hpp"
class Intern{
public:
Intern();
Intern(const Intern& copy);
~Intern();
Intern &operator=(const Intern& rhs);
AForm *makeForm(std::string formName, std::string target);
};