Example #1
0
Acquaintance::Acquaintance(const Contact &c)
{
	strcpy(Nume,c.getNume());
	strcpy(Prenume,c.getPrenume());
	strcpy(NrTel,c.getNrTel());
	Profesie[0]=NULL;
}
Example #2
0
Colleague::Colleague(const Contact &c)
{
	strcpy(Nume,c.getNume());
	strcpy(Prenume,c.getPrenume());
	strcpy(NrTel,c.getNrTel());
	Categorie[0]=NULL;
}
Example #3
0
Friend::Friend(const Contact &c)
{
	strcpy(Nume,c.getNume());
	strcpy(Prenume,c.getPrenume());
	strcpy(NrTel,c.getNrTel());
	Data[0]=NULL;
}
Example #4
0
Listac::Listac(const Contact &prop)
{
	ownerContact.setNume(prop.getNume());
	ownerContact.setPrenume(prop.getPrenume());
	ownerContact.setNrTel(prop.getNrTel());
}