/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Contact.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: apommier +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/04/15 10:37:15 by apommier #+# #+# */ /* Updated: 2022/04/21 18:00:26 by apommier ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef CONTACT_HPP # define CONTACT_HPP # include # include # include # include # include # include class Contact { public: Contact(void); ~Contact(void); void FillContact(std::string *info); std::string GetInfo(int index); std::string GetRealInfo(int index); private: std::string _first_name; std::string _last_name; std::string _nickname; std::string _phone_number; std::string _darkest_secret; }; #endif