* @brief Read an entire line from the input stream * * This function is similar to `std::getline` or `std::fgets`. * This function handles both `\r`, `\r\n` and `\n`. * The new line marker, either `\r`, `\r\n` or `\n`, will be discarded. i.e. won't be passed to * receiver nor kept in input stream. * * Return value will be false only if the stream does not contains any characte
| 431 | * This function never returns vtkParseResult::Ok, vtkParseResult::EndOfLine indicates success. |
| 432 | */ |
| 433 | vtkParseResult ReadLine(const DataReceiverType& receiver, std::size_t limit = NoLimit) |
| 434 | { |
| 435 | return this->Context.ReadLine(receiver, limit); |
| 436 | } |
| 437 | |
| 438 | /** |
| 439 | * @brief Read an entire line from the input stream |