class Frutta
{
public:
virtual void siSbuccia() = 0; //Metodo virtuale puro
.....
};
class Mela : public Frutta
{
private:
bool buccia = true;
public:
bool siSbuccia()
{
return buccia;
}
};