10 lines
246 B
C++
10 lines
246 B
C++
#include "precompile.h"
|
|
|
|
#include "custom_team.h"
|
|
|
|
std::shared_ptr<CustomMember> CustomTeam::GetMember(const std::string& account_id)
|
|
{
|
|
auto itr = member_hash_.find(account_id);
|
|
return itr != member_hash_.end() ? itr->second : nullptr;
|
|
}
|