From ac9e6b713cda967b68cb320b79461d466e0a151c Mon Sep 17 00:00:00 2001 From: Asahel Date: Sun, 3 Mar 2024 21:02:36 -0800 Subject: Added contact class info --- InClassExercise13/Contact.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 InClassExercise13/Contact.h (limited to 'InClassExercise13/Contact.h') 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 -- cgit v1.2.3