| 116 | } |
| 117 | |
| 118 | CSVRunner::Iterator::Iterator(CSVReader & reader, bool isEnd) : m_reader(reader) |
| 119 | { |
| 120 | if (!isEnd) |
| 121 | m_current = m_reader.ReadRow(); |
| 122 | } |
| 123 | |
| 124 | CSVRunner::Iterator::Iterator(Iterator const & other) : m_reader(other.m_reader), m_current(other.m_current) {} |
| 125 |