7 #ifndef WORDTOKENIZER_H_
8 #define WORDTOKENIZER_H_
33 static void tokenize(
const std::string &s, WordTokenizerResults &results);
C++ class: doctemplate.h.
Definition: bufferedoutput.cpp:13
Tokenizes a paragraph separating words from spaces.
Definition: wordtokenizer.h:19
std::list< std::pair< std::string, std::string > > WordTokenizerResults
Results of the tokenizer; each element is a pair where the first string represents a possible space a...
Definition: wordtokenizer.h:26
static void tokenize(const std::string &s, WordTokenizerResults &results)
Tokenizes the passed string and stores the results.
Definition: wordtokenizer.cpp:27