34 lines
1.2 KiB
C++
34 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* WrongAnimal.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/11/21 12:16:15 by aortigos #+# #+# */
|
|
/* Updated: 2025/11/21 12:16:16 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef WRONGANIMAL_HPP
|
|
|
|
# define WRONGANIMAL_HPP
|
|
|
|
# include <iostream>
|
|
|
|
class WrongAnimal
|
|
{
|
|
protected:
|
|
std::string type;
|
|
public:
|
|
WrongAnimal();
|
|
~WrongAnimal();
|
|
WrongAnimal(const WrongAnimal &other);
|
|
WrongAnimal& operator=(const WrongAnimal &other);
|
|
|
|
void makeSound() const;
|
|
std::string getType() const;
|
|
};
|
|
|
|
#endif
|