Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1.  
  2. Dictionary dictionary("C:\\Users\\Cassie\\Desktop\\dictionary\\bigdictionary.txt"); //Call function to load dictionary words into vector
  3.  
  4.  
  5. Dictionary::Dictionary(string filename) //Load vector with words from dictionary file
  6. {
  7.     string word;
  8.     ifstream dictionary;
  9.     dictionary.open(filename.c_str());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement