#pragma once #include #include "./WrongAnimal.hpp" class WrongCat : public WrongAnimal { public: WrongCat(const WrongCat& src); WrongCat &operator=(const WrongCat& src); WrongCat(); ~WrongCat(); void makeSound() const; };