diff options
| author | Connor McDowell <[email protected]> | 2024-02-29 17:45:43 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-29 17:45:43 -0800 |
| commit | af779b3da6389e54c3894d5de1d940e35c65c1c7 (patch) | |
| tree | dfa93c61a1bb0329b06ba6ca30da76f694f2cc74 /Project1/Contacts.h | |
| parent | setting all functions to run in contact_list class (diff) | |
| download | homework-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/Contacts.h')
| -rw-r--r-- | Project1/Contacts.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Project1/Contacts.h b/Project1/Contacts.h index a86f698..a314f0f 100644 --- a/Project1/Contacts.h +++ b/Project1/Contacts.h @@ -80,17 +80,17 @@ public: void set_size(size_t size); size_t get_size(); - void DeleteContact(contact newContact[], size_t MAX); + void DeleteContact(contact& contact); void CopyList(const contact* contacts, const size_t& size); - void AddContact(contact* newContact, size_t MAX, size_t& t); + void AddContact(const contact& contact, size_t MAX, size_t& t); - void update(contact newContact[], size_t MAX); + void update(const contact& contact, size_t MAX); - void Print(contact newContact[], size_t& MAX); + void Print(contact newContact[], size_t& MAX) const; - //size_t Size() const; + size_t Size() const; }; //struct contact_struct |