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