#ifndef _CONTATTO_ #define _CONTATTO_ #include class Contatto { public: Contatto(const string& nome, const string& tel, const string& indirizzo); const string& nome() const; const string& telefono() const; const string& indirizzo() const; void stampa( ostream& ) const; private: string nome_; string tel_; string indirizzo_; }; #endif