00001 00032 #ifndef LL_LLBOOST_H 00033 #define LL_LLBOOST_H 00034 00035 #include <boost/tokenizer.hpp> 00036 00037 // boost_tokenizer typedef 00038 /* example usage: 00039 boost_tokenizer tokens(input_string, boost::char_separator<char>(" \t\n")); 00040 for (boost_tokenizer::iterator token_iter = tokens.begin(); token_iter != tokens.end(); ++token_iter) 00041 { 00042 std::string tok = *token_iter; 00043 process_token_string( tok ); 00044 } 00045 */ 00046 typedef boost::tokenizer<boost::char_separator<char> > boost_tokenizer; 00047 00048 #endif // LL_LLBOOST_H