diff options
Diffstat (limited to 'Project1/Contact_list.h')
| -rw-r--r-- | Project1/Contact_list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Project1/Contact_list.h b/Project1/Contact_list.h index adfdbd6..9a9dd70 100644 --- a/Project1/Contact_list.h +++ b/Project1/Contact_list.h @@ -27,11 +27,11 @@ public: void set_size(size_t size); size_t get_size(); - void DeleteContact(contact& contact); + void DeleteContact(contact* contact[]); void CopyList(const contact* contacts, const size_t& size); - void AddContact(contact& contact, size_t& t); + void AddContact(contact contact[], size_t& t, contact_struct save); void Print() const; |