| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* CatWrong.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2025/12/18 16:28:27 by bchanot #+# #+# */
- /* Updated: 2025/12/18 17:03:19 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef CAT_HPP
- # define CAT_HPP
- # include <iostream>
- # include <string>
- #include "AnimalWrong.hpp"
- class CatWrong : public AnimalWrong
- {
- public:
- CatWrong();
- CatWrong( CatWrong const & src );
- ~CatWrong();
- CatWrong & operator=( CatWrong const & rhs );
- void makeSound(void) const;
- private:
- };
- std::ostream & operator<<( std::ostream & o, CatWrong const & i );
- #endif /* ************************************************************* CAT_H */
|