/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Dog.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos # include "../Animal/Animal.hpp" class Dog : public Animal { public: Dog(); ~Dog(); Dog(const Dog &other); Dog& operator=(const Dog &other); void makeSound() const; }; #endif