/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Dog.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/24 09:02:36 by narnaud #+# #+# */ /* Updated: 2022/06/24 10:10:00 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include "Dog.hpp" Dog::Dog (void):Animal("Dog") { cout << "Dog default constructor called" << endl; } Dog::~Dog (void) { cout << "Dog default destructor called" << endl; } void Dog::makeSound(void) const { cout << "Waouf" << endl; }