aboutsummaryrefslogtreecommitdiff
path: root/InClassExercise13/Contact.h
blob: ac97e326412ea8b3f33e06afe02187821207aa2b (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef CONTACT_H
#define CONTACT_H

void SetFirstName(const char* firstName) {
	delete[] _firstName;
	_firstName = new
}

#endif CONTACT_H