summaryrefslogtreecommitdiff
path: root/libmysqlpp/my-selectcommand.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-09-21 17:59:41 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-09-21 17:59:41 +0100
commita8630518c10667ff88f0e0846de98337743a5808 (patch)
tree4c926f7af693672b81888d3fcb69757ebf29620c /libmysqlpp/my-selectcommand.cpp
parentAdd JT recommended warnings (diff)
downloadlibdbpp-mysql-a8630518c10667ff88f0e0846de98337743a5808.tar.bz2
libdbpp-mysql-a8630518c10667ff88f0e0846de98337743a5808.tar.xz
libdbpp-mysql-a8630518c10667ff88f0e0846de98337743a5808.zip
First commit passing IWYU
Diffstat (limited to 'libmysqlpp/my-selectcommand.cpp')
-rw-r--r--libmysqlpp/my-selectcommand.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/libmysqlpp/my-selectcommand.cpp b/libmysqlpp/my-selectcommand.cpp
index 73ae7cc..7f1eaf8 100644
--- a/libmysqlpp/my-selectcommand.cpp
+++ b/libmysqlpp/my-selectcommand.cpp
@@ -1,8 +1,16 @@
#include "my-selectcommand.h"
+#include "command.h"
#include "my-column.h"
-#include "my-connection.h"
+#include "my-command.h"
#include "my-error.h"
+#include "selectcommand.h"
+#include <cstdint>
#include <cstring>
+#include <field_types.h>
+#include <memory>
+#include <mysql.h>
+#include <mysql_time.h>
+#include <vector>
MySQL::SelectCommand::SelectCommand(const Connection * conn, const std::string & sql) :
DB::Command(sql), DB::SelectCommand(sql), MySQL::Command(conn, sql), prepared(false), executed(false)