#ifndef _TESTO_ #define _TESTO_ #include using namespace std; class Testo { public: Testo( const string& t ); virtual ~Testo(); const string& titolo() const; virtual ostream& stampa( ostream& ) const; private: string titolo_; }; #endif