blob: bb3e188c308eaa5bcabff02a30cff5b4e824ae7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Intern.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/17 13:41:09 by cacharle #+# #+# */
/* Updated: 2020/11/17 13:48:01 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "Intern.hpp"
Intern::Intern() {}
Intern::Intern(const Intern& other) {}
Intern& Intern::operator=(const Intern& other) {}
Intern::~Intern() {}
Form *Intern::makeForm(std::string const& name, std::string const& target)
{
}
|