diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-11-17 13:52:48 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-11-17 13:52:48 +0100 |
| commit | 331c3596660fed6c8b04fdfd0a89435ccffaaf20 (patch) | |
| tree | 4196c94d9084a3d0ed45f3ec798d713639cbfc8a /cpp05/ex03 | |
| parent | 4eecb32ffcf48c42672782fbcd53781a22e95ebf (diff) | |
| download | piscine_cpp-331c3596660fed6c8b04fdfd0a89435ccffaaf20.tar.gz piscine_cpp-331c3596660fed6c8b04fdfd0a89435ccffaaf20.tar.bz2 piscine_cpp-331c3596660fed6c8b04fdfd0a89435ccffaaf20.zip | |
Fixing cpp05/ex00-02
Diffstat (limited to 'cpp05/ex03')
| -rw-r--r-- | cpp05/ex03/Intern.cpp | 23 | ||||
| -rw-r--r-- | cpp05/ex03/Intern.hpp | 28 |
2 files changed, 51 insertions, 0 deletions
diff --git a/cpp05/ex03/Intern.cpp b/cpp05/ex03/Intern.cpp new file mode 100644 index 0000000..bb3e188 --- /dev/null +++ b/cpp05/ex03/Intern.cpp @@ -0,0 +1,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) +{ + +} 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 <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 |
