/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Dog.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/12/01 20:06:20 by adjoly #+# #+# */ /* Updated: 2024/12/06 15:52:35 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "Animal.hpp" class Dog : public Animal { public: Dog(void); ~Dog(void); Dog(const Dog &); Dog &operator=(const Dog &); void makeSound(void) const; };