-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntern.hpp
More file actions
39 lines (33 loc) · 1.38 KB
/
Intern.hpp
File metadata and controls
39 lines (33 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Intern.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/27 17:12:08 by zelhajou #+# #+# */
/* Updated: 2024/12/30 16:39:10 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef INTERN_HPP
#define INTERN_HPP
#include <string>
#include "AForm.hpp"
#include "ShrubberyCreationForm.hpp"
#include "RobotomyRequestForm.hpp"
#include "PresidentialPardonForm.hpp"
class Intern
{
public:
Intern();
Intern(const Intern &src);
~Intern();
Intern &operator=(const Intern &src);
AForm *makeForm(const std::string &formName, const std::string &target);
class FormNotFoundException : public std::exception
{
public:
const char *what() const throw();
};
};
#endif