#ifndef _DICTIONARY_H_ #define _DICTIONARY_H_ #include using namespace std; #include "stringset.h" /* * */ class Dictionary { public: Dictionary (); void LoadWords (const string& filename); bool Contains (const string& word) const; string GetSecretWord () const; private: StringSet myWords; }; #endif