#include "Contact.hpp" #include #include #include #include #include class PhoneBook { private: Contact _contacts[8]; int _currentIndex; int _totalContacts; public: PhoneBook(); ~PhoneBook(); void addContact(); void searchContacts() const; void displayContact(int index) const; std::string truncateString(const std::string& str) const; };