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