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