/* ************************************************************************** */ /* */ /* :::::::: */ /* Dog.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/04/05 17:04:03 by whaffman #+# #+# */ /* Updated: 2025/04/08 10:42:51 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #pragma once #include "Animal.hpp" #include class Dog : public Animal { public: Dog(); Dog(const Dog &other); ~Dog() override; Dog &operator=(const Dog &other); void makeSound(void) const override; };