#ifndef WrongCat_HPP # define WrongCat_HPP # include # include "WrongAnimal.hpp" class WrongCat : public WrongAnimal { public : WrongCat(); WrongCat(std::string type); WrongCat(const WrongCat &other); virtual ~WrongCat(); WrongCat & operator=(const WrongCat &other); virtual void makeSound() const; }; #endif