Starting Intern Class

This commit is contained in:
2026-02-18 10:39:09 +01:00
parent 39ec747514
commit 7539e90e6a
3 changed files with 46 additions and 13 deletions

View File

@@ -1,27 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Intern.hpp :+: :+: :+: */
/* Intern.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/02/15 18:00:27 by aortigos #+# #+# */
/* Updated: 2026/02/06 02:28:09 by aortigos ### ########.fr */
/* Created: 2026/02/18 10:36:05 by aortigos #+# #+# */
/* Updated: 2026/02/18 10:36:05 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef INTERN_HPP
# define INTERN_HPP
# include <iostream>
class Intern
{
private:
public:
private:
public:
Intern();
Intern(const Intern &other);
Intern& operator=(const Intern &other);
~Intern();
};
#endif