From 7080f89bb2800917bfd9a560046a1ab7505f819e Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 3 Dec 2019 14:57:21 +0100 Subject: Initial commit with cpp00 start --- cpp00/ex01/Contact.hpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 cpp00/ex01/Contact.hpp (limited to 'cpp00/ex01/Contact.hpp') diff --git a/cpp00/ex01/Contact.hpp b/cpp00/ex01/Contact.hpp new file mode 100644 index 0000000..3d04889 --- /dev/null +++ b/cpp00/ex01/Contact.hpp @@ -0,0 +1,25 @@ +#ifndef CONTACT_HPP +# define CONTACT_HPP + +# include + +class Contact +{ +public: + Contact(std::string name); + // std::string phone_str(); + + std::string first_name; + std::string last_name; + std::string nickname; + std::string login; + std::string postal_address; + std::string email; + std::string phone; + std::string birthday; + std::string fav_meal; + std::string underware_color; + std::string darkest_secret; +}; + +#endif // CONTACT_HPP -- cgit