1
0
This repository has been archived on 2025-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_04/ex03/MateriaSource.hpp
2024-12-10 15:22:18 +01:00

29 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* MateriaSource.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/10 13:51:37 by adjoly #+# #+# */
/* Updated: 2024/12/10 14:50:48 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "AMateria.hpp"
class MaterianSource {
private:
AMateria _materias[4];
public:
MaterianSource(void);
~MaterianSource(void);
MaterianSource(const MaterianSource &);
MaterianSource &operator=(const MaterianSource &);
void leanrMateria(AMateria *);
AMateria createMateria(std::string const &);
};