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.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cpp00/ex01/Contact.cpp (limited to 'cpp00/ex01/Contact.cpp') 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 +#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; +} -- cgit