/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/30 16:21:28 by adjoly #+# #+# */ /* Updated: 2024/12/01 20:23:26 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #include "cat.hpp" #include "dog.hpp" #include //int main(void) { // cat cutie; // dog dogo; // // cutie.makeSound(); // dogo.makeSound(); //} int main() { const Animal* meta = new Animal(); const Animal* j = new Dog(); const Animal* i = new Cat(); std::cout << j->getType() << " " << std::endl; std::cout << i->getType() << " " << std::endl; i->makeSound(); //will output the cat sound! j->makeSound(); meta->makeSound(); return 0; }