29 #include <boost/tokenizer.hpp>
31 #include "WPathHelper.h"
120 std::vector< boost::filesystem::path > paths;
125 std::string additionalPaths( getenv(
"OW_MODULE_PATH" ) ? getenv(
"OW_MODULE_PATH" ) :
"" );
128 typedef boost::tokenizer< boost::char_separator< char > > tokenizer;
129 boost::char_separator< char > sep(
";" );
130 tokenizer tok( additionalPaths, sep );
131 for( tokenizer::iterator it = tok.begin(); it != tok.end(); ++it )
133 paths.push_back( boost::filesystem::path( *it ) );