/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Intern.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: apommier +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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); };