diff options
Diffstat (limited to 'InClassExercise13/Contact.h')
| -rw-r--r-- | InClassExercise13/Contact.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/InClassExercise13/Contact.h b/InClassExercise13/Contact.h new file mode 100644 index 0000000..ac97e32 --- /dev/null +++ b/InClassExercise13/Contact.h @@ -0,0 +1,9 @@ +#ifndef CONTACT_H +#define CONTACT_H + +void SetFirstName(const char* firstName) { + delete[] _firstName; + _firstName = new +} + +#endif CONTACT_H
\ No newline at end of file |