#ifndef PHONEBOOK_CLASS_H # define PHONEBOOK_CLASS_H #include "Contact.class.hpp" class Phonebook { public: Contact Contact[8]; Phonebook(void); ~Phonebook(void); getContact(void); } #endif