#include "precompile.h" #include "custom_team.h" std::shared_ptr CustomTeam::GetMember(const std::string& account_id) { auto itr = member_hash_.find(account_id); return itr != member_hash_.end() ? itr->second : nullptr; }