blob: 60c2ac81308ae07b2789fd2be7f933e0f391099d (
plain)
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Intern.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/17 13:39:59 by cacharle #+# #+# */
/* Updated: 2020/11/17 13:48:08 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef INTERN_HPP
# define INTERN_HPP
class Intern
{
public:
Intern();
Intern(const Intern& other);
Intern& operator=(const Intern& other);
~Intern();
Form *makeForm(std::string const& name, std::string const& target);
private:
};
#endif
|