Definition at line 159 of file CSVParser.cc.
◆ SpaceSeparatorParser()
SpaceSeparatorParser::SpaceSeparatorParser |
( |
char |
escape = '\\' , |
|
|
char |
sep = ' ' , |
|
|
char |
quote = '"' |
|
) |
| |
|
inline |
◆ operator()()
template<class I >
bool SpaceSeparatorParser::operator() |
( |
I & |
next, |
|
|
I |
end, |
|
|
std::string & |
tok |
|
) |
| |
|
inline |
Definition at line 165 of file CSVParser.cc.
173 else if (*next==
quote)
175 else if (!quoted && isspace(*next))
177 while (isspace(*next)) ++next;
◆ reset()
void SpaceSeparatorParser::reset |
( |
| ) |
|
|
inline |
◆ escape
char SpaceSeparatorParser::escape |
◆ quote
char SpaceSeparatorParser::quote |
The documentation for this struct was generated from the following file: