| 30 | |
| 31 | template <typename Fn> |
| 32 | void ForEachRow(Fn && fn) |
| 33 | { |
| 34 | while (auto const optRow = ReadRow()) |
| 35 | fn(*optRow); |
| 36 | } |
| 37 | |
| 38 | // The total number of lines read including the header. Count starts at 0. |
| 39 | size_t GetCurrentLineNumber() const; |
no outgoing calls