Phonebook.class.hpp 206 B

123456789101112131415161718
  1. #ifndef PHONEBOOK_CLASS_H
  2. # define PHONEBOOK_CLASS_H
  3. #include "Contact.class.hpp"
  4. class Phonebook {
  5. public:
  6. int cpt;
  7. int nb;
  8. Phonebook(void);
  9. ~Phonebook(void);
  10. Contact contact[8];
  11. };
  12. #endif