#include “User.h”
std::string User::getName() {
return name;
Copyright By PowCoder代写 加微信 powcoder
std::string User::getEmail() {
return email;
bool operator==(const User& user1, const User& user2) {
return user1.ID == user2.ID && user1.email == user2.email && user1.name == user2.name;
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com