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