#ifndef _CONTATTO_HPP_ #define _CONTATTO_HPP_ #include #include using std::string; class contatto { private: string nome; string numero; public: contatto(); contatto(string); contatto(string, string); ~contatto(); static const int maxnome=20; static const int maxnumero=16; static const char sep=':'; static string extrnome(string); static string extrnumero(string); contatto& setnome(string); contatto& setnumero(string); string getnome(); string getnumero(); string getcontact(); }; #endif