aboutsummaryrefslogtreecommitdiff
path: root/cpp00/ex01/Contact.hpp
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-12-03 14:57:21 +0100
committerCharles <sircharlesaze@gmail.com>2019-12-03 14:57:21 +0100
commit7080f89bb2800917bfd9a560046a1ab7505f819e (patch)
treea324f9789f5cf9c6cc273989aa46c9c515ccb67e /cpp00/ex01/Contact.hpp
downloadpiscine_cpp-7080f89bb2800917bfd9a560046a1ab7505f819e.tar.gz
piscine_cpp-7080f89bb2800917bfd9a560046a1ab7505f819e.tar.bz2
piscine_cpp-7080f89bb2800917bfd9a560046a1ab7505f819e.zip
Initial commit with cpp00 start
Diffstat (limited to 'cpp00/ex01/Contact.hpp')
-rw-r--r--cpp00/ex01/Contact.hpp25
1 files changed, 25 insertions, 0 deletions
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 <string>
+
+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