/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* WrongAnimal.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/28 17:44:54 by rparodi #+# #+# */ /* Updated: 2025/01/31 19:34:06 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WRONGANIMAL_HPP #define WRONGANIMAL_HPP #include #include class WrongAnimal { public: WrongAnimal(); virtual ~WrongAnimal(); virtual void makeSound() const; std::string getType() const; protected: std::string type; private: }; #endif