aboutsummaryrefslogtreecommitdiff
path: root/cpp00/ex01/Contact.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp00/ex01/Contact.cpp')
-rw-r--r--cpp00/ex01/Contact.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/cpp00/ex01/Contact.cpp b/cpp00/ex01/Contact.cpp
new file mode 100644
index 0000000..6e8764c
--- /dev/null
+++ b/cpp00/ex01/Contact.cpp
@@ -0,0 +1,16 @@
+#include <string>
+#include "Contact.hpp"
+
+Contact::Contact(std::string name)
+{
+ this->name = name;
+}
+
+std::string
+Contact::phone_str()
+{
+ std::string s;
+ for (int i = 0; i < 10; i++)
+ s.push_back(phone[i] - '0');
+ return s;
+}