From 331c3596660fed6c8b04fdfd0a89435ccffaaf20 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 17 Nov 2020 13:52:48 +0100 Subject: Fixing cpp05/ex00-02 --- cpp05/ex03/Intern.hpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 cpp05/ex03/Intern.hpp (limited to 'cpp05/ex03/Intern.hpp') diff --git a/cpp05/ex03/Intern.hpp b/cpp05/ex03/Intern.hpp new file mode 100644 index 0000000..60c2ac8 --- /dev/null +++ b/cpp05/ex03/Intern.hpp @@ -0,0 +1,28 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* 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 -- cgit