Exemple #1
0
bool operator<(const Carte& lhs, const Carte& rhs)
{
    if(lhs.getColor() < rhs.getColor())
		return true;
	else if (lhs.getColor() == rhs.getColor() && lhs.getValue() < rhs.getValue())
		return true;
	else 
		return false;
}
Exemple #2
0
bool operator==(const Carte& lhs, const Carte& rhs) 
{
    return lhs.getValue() == rhs.getValue() && lhs.getColor() == rhs.getColor();
}