CatWrong.hpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* CatWrong.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:03:19 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef CAT_HPP
  13. # define CAT_HPP
  14. # include <iostream>
  15. # include <string>
  16. #include "AnimalWrong.hpp"
  17. class CatWrong : public AnimalWrong
  18. {
  19. public:
  20. CatWrong();
  21. CatWrong( CatWrong const & src );
  22. ~CatWrong();
  23. CatWrong & operator=( CatWrong const & rhs );
  24. void makeSound(void) const;
  25. private:
  26. };
  27. std::ostream & operator<<( std::ostream & o, CatWrong const & i );
  28. #endif /* ************************************************************* CAT_H */