/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* WrongAnimal.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/06/24 09:02:10 by narnaud #+# #+# */ /* Updated: 2022/06/24 10:15:37 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include #include using std::string; using std::cout; using std::endl; class WrongAnimal{ public: WrongAnimal(void); WrongAnimal(string type); WrongAnimal(WrongAnimal const & src); virtual ~WrongAnimal(void); WrongAnimal & operator= (WrongAnimal const & src); string getType(void) const; void makeSound(void) const; protected: string _type; };