aboutsummaryrefslogtreecommitdiff
path: root/Project1/program.cpp
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-02-29 17:45:43 -0800
committerConnor McDowell <[email protected]>2024-02-29 17:45:43 -0800
commitaf779b3da6389e54c3894d5de1d940e35c65c1c7 (patch)
treedfa93c61a1bb0329b06ba6ca30da76f694f2cc74 /Project1/program.cpp
parentsetting all functions to run in contact_list class (diff)
downloadhomework-7-connormcdowell275-af779b3da6389e54c3894d5de1d940e35c65c1c7.tar.xz
homework-7-connormcdowell275-af779b3da6389e54c3894d5de1d940e35c65c1c7.zip
all functions refactored to fit in contact list. testing now.
still testing. spent several hours on this total today, will continue tomorrow.
Diffstat (limited to 'Project1/program.cpp')
-rw-r--r--Project1/program.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Project1/program.cpp b/Project1/program.cpp
index 938b7ef..a8971b4 100644
--- a/Project1/program.cpp
+++ b/Project1/program.cpp
@@ -38,7 +38,7 @@ int main()
{
case 1:
//addNew(newContact, MAX, t);
- contact_list.AddContact(newContact, MAX, t);
+ contact_list.AddContact(*newContact, MAX, t);
if (t >= MAX) // Check if the number of contacts exceeds MAX
{
contact* newContactTemp = new contact[MAX * 2]; // Double the size
@@ -50,7 +50,7 @@ int main()
}
break;
case 2:
- contact_list.update(newContact, MAX);
+ contact_list.update(*newContact, MAX);
break;
case 3:
contact_list.Print(newContact, MAX); // Print only the existing contacts