29 lines
1.0 KiB
C++
29 lines
1.0 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Animal.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/09/06 02:27:27 by aortigos #+# #+# */
|
|
/* Updated: 2025/09/06 02:28:09 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ANIMAL_HPP
|
|
|
|
# define ANIMAL_HPP
|
|
|
|
# include <iostream>
|
|
|
|
class Animal
|
|
{
|
|
private:
|
|
std::string type;
|
|
public:
|
|
Animal();
|
|
~Animal();
|
|
};
|
|
|
|
#endif
|