30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Intern.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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:
|
|
Intern();
|
|
Intern(const Intern &other);
|
|
Intern& operator=(const Intern &other);
|
|
~Intern();
|
|
};
|
|
|
|
#endif
|