ex02
This commit is contained in:
32
ex02/Base/Base.hpp
Normal file
32
ex02/Base/Base.hpp
Normal file
@@ -0,0 +1,32 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* Base.hpp :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2026/03/01 10:28:47 by aortigos #+# #+# */
|
||||
/* Updated: 2026/03/01 10:28:47 by aortigos ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef BASE_HPP
|
||||
|
||||
# define BASE_HPP
|
||||
|
||||
# include <iostream>
|
||||
# include <cstdlib> // rand
|
||||
|
||||
class Base
|
||||
{
|
||||
private:
|
||||
|
||||
public:
|
||||
virtual ~Base();
|
||||
};
|
||||
|
||||
Base *generate();
|
||||
void identify(Base *p);
|
||||
void identify(Base &p);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user