/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Intern.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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