#ifndef CONTACT_H #define CONTACT_H #include class Contact { public: std::string name; std::string phone; std::string email; Contact(const std::string& n, const std::string& p, const std::string& e) : name(n), phone(p), email(e) {} }; #endif // CONTACT_H