diff options
| author | Asahel <[email protected]> | 2024-03-03 21:02:36 -0800 |
|---|---|---|
| committer | Asahel <[email protected]> | 2024-03-03 21:02:36 -0800 |
| commit | ac9e6b713cda967b68cb320b79461d466e0a151c (patch) | |
| tree | 036fab4e15fafa771eca7871dc306e9dc2ebd790 /InClassExercise13/Contact.h | |
| parent | add deadline (diff) | |
| download | in-class-exercise-13-asahellt-main.tar.xz in-class-exercise-13-asahellt-main.zip | |
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 |