uint qHash(const Team &team) { return qHash( team.getName() ) ^ qHash( team.getClub() ); }
bool operator==( const Team& one, const Team& other ) { return one.getName() == other.getName() && one.getClub() == other.getClub(); }