aboutsummaryrefslogtreecommitdiff
path: root/InClassExercise13/Contact.h
diff options
context:
space:
mode:
authorAsahel <[email protected]>2024-03-03 21:02:36 -0800
committerAsahel <[email protected]>2024-03-03 21:02:36 -0800
commitac9e6b713cda967b68cb320b79461d466e0a151c (patch)
tree036fab4e15fafa771eca7871dc306e9dc2ebd790 /InClassExercise13/Contact.h
parentadd deadline (diff)
downloadin-class-exercise-13-asahellt-main.tar.xz
in-class-exercise-13-asahellt-main.zip
Added contact class infoHEADmain
Diffstat (limited to 'InClassExercise13/Contact.h')
-rw-r--r--InClassExercise13/Contact.h9
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