#ifndef CASELLO_H #define CASELLO_H #include "Compito.h" class Casello : public Compito { public: bool svolgiCompito(); private: double deltaT() const; }; #endif