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