diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-08-02 21:13:43 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-08-02 21:13:43 +0100 |
commit | 25e2428754a3ac6c02650812564c857d1e25df55 (patch) | |
tree | e5175651650126f77c46a9030853dafeac13c4f7 /lib/rawDataReader.h | |
parent | Assert DbValue is copyable and moveable (diff) | |
download | mygrate-25e2428754a3ac6c02650812564c857d1e25df55.tar.bz2 mygrate-25e2428754a3ac6c02650812564c857d1e25df55.tar.xz mygrate-25e2428754a3ac6c02650812564c857d1e25df55.zip |
Handle Rows events with more than one row
Diffstat (limited to 'lib/rawDataReader.h')
-rw-r--r-- | lib/rawDataReader.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/rawDataReader.h b/lib/rawDataReader.h index 906eaef..58724ff 100644 --- a/lib/rawDataReader.h +++ b/lib/rawDataReader.h @@ -56,6 +56,12 @@ namespace MyGrate { void discard(size_t); + bool + more() const + { + return offset < len; + } + private: void offsetSizeCheck(size_t) const; |