#include "Volume.h" #include Volume::Volume( const string& a, const string& t, int n ) : Libro( a, t ), n_( n ) { cout << "Costruisco un Volume" << endl; } Volume::~Volume() { cout << "Distruggo un Volume" << endl; } void Volume::print() const { cout << "Vol. " << n_ << " - "; Libro::print(); }