KillianMills

sneaky.h

Oct 1st, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.51 KB | None | 0 0
  1. #include <string>
  2. #include <vector>
  3. #include <map>
  4.  
  5. using namespace std;
  6.  
  7. class sneaky
  8. {
  9. public:
  10.     //methods
  11.     string keyMaker(string, char); // makes a unique key based on the occurence of the user's guess
  12.     map<string, vector<string> > mapMaker(vector<string>& , char);
  13.     void debugger(int, bool);
  14.     void makeFamily(vector<string>& , char, bool); // sorts the vector into seperate vectors based on character
  15.    
  16.     //instance variables
  17.     string temp; // temp string for holding word being checked
  18.     //bool debug;
  19. };
Advertisement
Add Comment
Please, Sign In to add comment