/* ************************************************************************** */ /* */ /* :::::::: */ /* WrongAnimal.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/04/05 17:24:04 by whaffman #+# #+# */ /* Updated: 2025/04/05 17:26:34 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #pragma once #include #include class WrongAnimal { protected: std::string type; public: WrongAnimal(); WrongAnimal(const WrongAnimal &animal); virtual ~WrongAnimal(); WrongAnimal &operator=(const WrongAnimal &animal); virtual void makeSound(void) const; std::string getType(void) const; };