Contact.class.hpp 269 B

123456789101112131415161718192021
  1. #ifndef CONTACT_CLASS_H
  2. # define CONTACT_CLASS_H
  3. class Contact {
  4. public:
  5. Contact(void);
  6. ~Contact(void);
  7. getContact(void) const;
  8. private:
  9. const char *first_name;
  10. const char *last_name;
  11. const char *nickname;
  12. const char *number;
  13. const char *secret;
  14. }
  15. #endif