33 lines
1.2 KiB
C++
33 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* WrongCat.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/11/21 11:44:07 by aortigos #+# #+# */
|
|
/* Updated: 2025/11/21 11:44:08 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef WRONGCAT_HPP
|
|
|
|
# define WRONGCAT_HPP
|
|
|
|
# include <iostream>
|
|
# include "../WrongAnimal/WrongAnimal.hpp"
|
|
|
|
class WrongCat : public WrongAnimal
|
|
{
|
|
public:
|
|
WrongCat();
|
|
~WrongCat();
|
|
WrongCat(const WrongCat &other);
|
|
WrongCat& operator=(const WrongCat &other);
|
|
|
|
void makeSound() const;
|
|
std::string getType() const;
|
|
};
|
|
|
|
#endif
|