mirror of
https://github.com/Ladebeze66/cpp-partie-2.git
synced 2025-12-16 05:57:57 +01:00
34 lines
1.3 KiB
C++
34 lines
1.3 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Intern.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/02/25 16:16:41 by fgras-ca #+# #+# */
|
|
/* Updated: 2024/02/25 16:26:38 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef INTERN_HPP
|
|
#define INTERN_HPP
|
|
|
|
#include "AForm.hpp"
|
|
#include "ShrubberyCreationForm.hpp"
|
|
#include "RobotomyRequestForm.hpp"
|
|
#include "PresidentialPardonForm.hpp"
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
class Intern
|
|
{
|
|
public:
|
|
Intern();
|
|
Intern(const Intern& other);
|
|
Intern& operator=(const Intern& other);
|
|
~Intern();
|
|
|
|
AForm* makeForm(const std::string& formName, const std::string& target) const;
|
|
};
|
|
|
|
#endif |