Cat.hpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* Cat.hpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2025/12/18 16:28:27 by bchanot #+# #+# */
  9. /* Updated: 2025/12/18 17:06:55 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef CATWRONG_HPP
  13. # define CATWRONG_HPP
  14. # include <iostream>
  15. # include <string>
  16. #include "Animal.hpp"
  17. class Cat : public Animal
  18. {
  19. public:
  20. Cat();
  21. Cat( Cat const & src );
  22. ~Cat();
  23. Cat & operator=( Cat const & rhs );
  24. virtual void makeSound(void) const;
  25. private:
  26. };
  27. std::ostream & operator<<( std::ostream & o, Cat const & i );
  28. #endif /* ************************************************************* CAT_H */