bool operator<(Carte const &a, Carte const& b) { return (int)a.getValeur()<(int)b.getValeur(); }
////////////////////////////////////////////////////////////////////// /////////////////////////////Opérator///////////////////////////////// ///////////////////////////////////////////////////////////////////// bool operator==(Carte const& a, Carte const& b) { return (int)a.getValeur()==(int)b.getValeur() && (int)a.getCouleur()==(int)b.getCouleur(); }