1 #ifndef UTILITIES_GENERAL_TOKENIZER_H
2 #define UTILITIES_GENERAL_TOKENIZER_H
9 class Tokenizer :
public std::vector<std::string> {
11 typedef std::vector<std::string>
super;
12 Tokenizer(
const std::string & sep,
const std::string &
input,
bool alsoempty=
true);
14 void join(std::string &
out,
const std::string & sep,
bool alsoempty=
true)
const;
20 #endif // UTILITIES_GENERAL_TOKENIZER_H
Tokenizer(const std::string &sep, const std::string &input, bool alsoempty=true)
void join(std::string &out, const std::string &sep, bool alsoempty=true) const
std::vector< std::string > super