| 266 | } |
| 267 | |
| 268 | bool MIParser::parseCSV(TupleValue** value, |
| 269 | char start, char end) |
| 270 | { |
| 271 | std::unique_ptr<TupleValue> tuple(new TupleValue); |
| 272 | |
| 273 | if (!parseCSV(*tuple, start, end)) |
| 274 | return false; |
| 275 | |
| 276 | *value = tuple.get(); |
| 277 | tuple.release(); |
| 278 | return true; |
| 279 | } |
| 280 | |
| 281 | bool MIParser::parseCSV(TupleValue& value, |
| 282 | char start, char end) |