/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Dog.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/18 16:27:49 by bchanot #+# #+# */ /* Updated: 2025/12/18 16:35:30 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef DOG_HPP # define DOG_HPP # include # include #include "Animal.hpp" class Dog : public Animal { public: Dog(); Dog( Dog const & src ); ~Dog(); Dog & operator=( Dog const & rhs ); virtual void makeSound(void) const; private: }; std::ostream & operator<<( std::ostream & o, Dog const & i ); #endif /* ************************************************************* DOG_H */