#ifndef WRONG_ANIMAL_HPP #define WRONG_ANIMAL_HPP #include class WrongAnimal { public: WrongAnimal(); WrongAnimal(const WrongAnimal &other); ~WrongAnimal(); WrongAnimal &operator=(const WrongAnimal &other); std::string getType() const; void makeSound() const; protected: std::string type; }; #endif