feat: adding the finished ex03

This commit is contained in:
Raphael 2025-03-19 20:22:33 +01:00
parent b9c98dffda
commit 9771c8de4a
15 changed files with 965 additions and 0 deletions

31
cpp05/ex03/Intern.hpp Normal file
View file

@ -0,0 +1,31 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Intern.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/19 19:43:54 by rparodi #+# #+# */
/* Updated: 2025/03/19 20:17:55 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef INTERN_HPP
#define INTERN_HPP
#include <iostream>
#include <string>
#include "PresidentialPardonForm.hpp"
#include "RobotomyRequestForm.hpp"
#include "ShrubberyCreationForm.hpp"
class Intern {
public:
Intern();
Intern(Intern const & copy);
Intern& operator= (Intern const & assign);
~Intern();
Form* makeForm(std::string type, std::string target);
};
#endif