「✨」 feat: finished ex03
This commit is contained in:
30
ex03/Intern.hpp
Normal file
30
ex03/Intern.hpp
Normal file
@ -0,0 +1,30 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* Intern.hpp :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/04/03 15:04:27 by adjoly #+# #+# */
|
||||
/* Updated: 2025/04/03 15:12:56 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
||||
class AForm;
|
||||
|
||||
class Intern {
|
||||
public:
|
||||
Intern(void);
|
||||
Intern(const Intern &);
|
||||
~Intern(void);
|
||||
|
||||
AForm *makeForm(std::string, std::string) const;
|
||||
|
||||
Intern &operator=(const Intern &);
|
||||
private:
|
||||
};
|
Reference in New Issue
Block a user