Example #1
0
bool ClientInfo::operator==(const ClientInfo& rh)
{
	if(this->getIPAddressString().compare( rh.getIPAddressString() ) == 0)
	{
		return true;
	}
	else
	{
		return false;
	}
}