piscine_cpp/cpp05/ex03/Intern.hpp
2025-03-19 20:30:50 +01:00

33 lines
1.3 KiB
C++

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