42_CPP00/ex01/include/Contact.hpp

18 lines
432 B
C++
Raw Normal View History

2023-05-22 08:04:39 -04:00
#include <string>
#include <iostream>
class Contact {
private:
std::string first_name;
std::string last_name;
std::string nickname;
std::string phone_number;
std::string darkest_secret;
public:
Contact(std::string first_name, std::string last_name, std::string nickname, std::string phone_number, std::string darkest_secret);
std::string to_string_partial() const;
std::string to_string_complete() const;
};