/*
 * 2004 Utah High School Programming Contest, University of Utah
 * Take-Home Problem
 *
 * Words.hpp
 *
 * This file contains the definition of the Words class.
 */

#ifndef WORDS_HPP
#define WORDS_HPP

// using namespace std;

/**
 * The Words class is a simple container for a hard-coded list of English
 * words.  It is defined separately from the Dictionary class in order to
 * separate the "raw list" of words from the internal data structures and code
 * of the Dictionary class.
 */
class Words {
public:
    /**
     * The array of all words.  The final element of this array must be a null
     * string (i.e., zero).
     */
    static const char *ALL_WORDS[];
};

#endif // WORDS_HPP

// End of file.

