Advertisement
Guest User

Untitled

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