Esempio n. 1
0
/** \return same as const_players(), but without BYE players.
 */
PlayerList Group::const_validPlayers() const
{ 
  PlayerList l = const_players();
  l.removeAll( byePlayer );
  return l;
}