Skip to content

Instantly share code, notes, and snippets.

@zachelko
Created April 2, 2010 19:46
Show Gist options
  • Save zachelko/353606 to your computer and use it in GitHub Desktop.
Save zachelko/353606 to your computer and use it in GitHub Desktop.
isAlpha
bool Hangman::isAlpha(const QString& key)
{
if (alphabet.size() > 0)
{
return alphabet.contains(key.toUpper());
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment