コード例 #1
0
ファイル: Carte.cpp プロジェクト: Naxyoh/Ascenseur
bool operator<(Carte const &a, Carte const& b)
{
    return (int)a.getValeur()<(int)b.getValeur();
}
コード例 #2
0
ファイル: Carte.cpp プロジェクト: Naxyoh/Ascenseur
//////////////////////////////////////////////////////////////////////
/////////////////////////////Opérator/////////////////////////////////
/////////////////////////////////////////////////////////////////////
bool operator==(Carte const& a, Carte const& b)
{
    return (int)a.getValeur()==(int)b.getValeur() && (int)a.getCouleur()==(int)b.getCouleur();
}