ParallelSearch/WordList.hpp

11 lines
175 B
C++

#ifndef WORDLIST_HPP
#define WORDLIST_HPP
#include <string>
#include <vector>
// Type of our hay stack: a list of strings
typedef std::vector<std::string> WordList;
#endif