#ifndef LIBRO_H #define LIBRO_H #include "Testo.h" class Libro : public Testo { public: Libro( const string& a, const string& t ); ~Libro(); void print() const; private: string autore_; }; #endif