/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Phonebook.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos # include # include "../Contact/Contact.hpp" class Phonebook { private: int index; Contact contacts[8]; public: Phonebook(); void addContacts(); void showContacts(); void print_table(); void find_contact(int i); }; #endif