/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Contact.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/12/23 16:56:55 by fgras-ca #+# #+# */ /* Updated: 2023/12/23 19:49:10 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef CONTACT_HPP # define CONTACT_HPP #include #include #include #include class Contact { public: Contact(); ~Contact(); void SetDetails(); void DisplaySummary(int index) const; void DisplayDetails() const; private: std::string _first_name; std::string _last_name; std::string _nickname; std::string _phone_number; std::string _darkest_secret; }; #endif