/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* WrongCat.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/24 09:02:47 by narnaud #+# #+# */ /* Updated: 2022/06/24 10:15:11 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include "WrongCat.hpp" WrongCat::WrongCat (void):WrongAnimal("WrongCat") { cout << "WrongCat default constructor called" << endl; } WrongCat::~WrongCat (void) { cout << "WrongCat default destructor called" << endl; } void WrongCat::makeSound(void) const { cout << "Miaou" << endl; }