Phonebook.class.hpp 201 B

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