summaryrefslogtreecommitdiff
path: root/lib/row.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-05-22 16:42:06 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-05-22 16:42:06 +0100
commit2317b4608821b03da0cc288d06b9c0bdb6b60239 (patch)
tree7dd46e3c2c5601e603baa7defa057cd4d41fc4c9 /lib/row.h
parentMove everything into more sensible places (diff)
downloadmygrate-2317b4608821b03da0cc288d06b9c0bdb6b60239.tar.bz2
mygrate-2317b4608821b03da0cc288d06b9c0bdb6b60239.tar.xz
mygrate-2317b4608821b03da0cc288d06b9c0bdb6b60239.zip
Pass linter checks
Except IWYU, doesn't like the C++20 CTF.
Diffstat (limited to 'lib/row.h')
-rw-r--r--lib/row.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/row.h b/lib/row.h
index 4191644..a40b1b2 100644
--- a/lib/row.h
+++ b/lib/row.h
@@ -2,8 +2,13 @@
#define MYGRATE_ROW_H
#include "mysql_types.h"
-#include "rawDataReader.h"
-#include <functional>
+#include <utility>
+#include <vector>
+namespace MyGrate {
+ class RawDataReader;
+}
+struct st_mariadb_rpl_rows_event;
+struct st_mariadb_rpl_table_map_event;
namespace MyGrate {
class Row : public std::vector<MySQL::FieldValue> {