// (C) Copyright 2008-2009 SDML (www.sdml.info) // // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef TEST_WORDS_HPP #define TEST_WORDS_HPP #include #include namespace test { std::vector words; void setup() { words.push_back("wizard"); words.push_back("bat"); words.push_back("baton"); words.push_back("batman"); words.push_back("forest"); words.push_back("fortune"); words.push_back("frost"); words.push_back("wizardry"); words.push_back("wizard"); } } #endif