29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/11/08 17:43:10 by hadi #+# #+# */
|
|
/* Updated: 2025/11/21 12:20:21 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "Animal/Animal.hpp"
|
|
#include "Dog/Dog.hpp"
|
|
#include "Cat/Cat.hpp"
|
|
|
|
int main()
|
|
{
|
|
const Animal* j = new Animal();
|
|
const Animal* i = new Cat();
|
|
|
|
j->makeSound();
|
|
i->makeSound();
|
|
|
|
delete (i);
|
|
|
|
return (0);
|
|
}
|