コード例 #1
0
ファイル: carte.cpp プロジェクト: aurrelhebert/Projet_Belote
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;
}
コード例 #2
0
ファイル: carte.cpp プロジェクト: aurrelhebert/Projet_Belote
bool operator==(const Carte& lhs, const Carte& rhs) 
{
    return lhs.getValue() == rhs.getValue() && lhs.getColor() == rhs.getColor();
}