Contact.class.hpp 344 B

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