| 1234567891011121314151617181920212223 |
- #ifndef CONTACT_CLASS_H
- # define CONTACT_CLASS_H
- class Contact {
- public:
- char *first_name;
- char *last_name;
- char *nickname;
- char *number;
- Contact(void);
- ~Contact(void);
- void getContact(void) const;
- void setContact(char *secret, char *first_name, char *last_name, char *nickname, char *number);
- private:
- char *_secret;
- };
- #endif
|